restic: 0.17.2 -> 0.17.3 (#354582)

authored by Adam C. Stephens and committed by GitHub d2d4c4f3 f0bee686

+5 -3
+5 -3
pkgs/tools/backup/restic/default.nix
··· 3 3 4 4 buildGoModule rec { 5 5 pname = "restic"; 6 - version = "0.17.2"; 6 + version = "0.17.3"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "restic"; 10 10 repo = "restic"; 11 11 rev = "v${version}"; 12 - hash = "sha256-CNQUqhFnuxoZpkVKyp/tDEfX91R8kjC2R41o2HA9eaM="; 12 + hash = "sha256-PTy/YcojJGrYQhdp98e3rEMqHIWDMR5jiSC6BdzBT/M="; 13 13 }; 14 14 15 15 patches = [ ··· 25 25 26 26 nativeCheckInputs = [ python3 ]; 27 27 28 - passthru.tests.restic = nixosTests.restic; 28 + passthru.tests = lib.optionalAttrs stdenv.isLinux { 29 + restic = nixosTests.restic; 30 + }; 29 31 30 32 postPatch = '' 31 33 rm cmd/restic/cmd_mount_integration_test.go