We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f0bee68 + 38a52bb commit d2d4c4fCopy full SHA for d2d4c4f
pkgs/tools/backup/restic/default.nix
@@ -3,13 +3,13 @@
3
4
buildGoModule rec {
5
pname = "restic";
6
- version = "0.17.2";
+ version = "0.17.3";
7
8
src = fetchFromGitHub {
9
owner = "restic";
10
repo = "restic";
11
rev = "v${version}";
12
- hash = "sha256-CNQUqhFnuxoZpkVKyp/tDEfX91R8kjC2R41o2HA9eaM=";
+ hash = "sha256-PTy/YcojJGrYQhdp98e3rEMqHIWDMR5jiSC6BdzBT/M=";
13
};
14
15
patches = [
@@ -25,7 +25,9 @@ buildGoModule rec {
25
26
nativeCheckInputs = [ python3 ];
27
28
- passthru.tests.restic = nixosTests.restic;
+ passthru.tests = lib.optionalAttrs stdenv.isLinux {
29
+ restic = nixosTests.restic;
30
+ };
31
32
postPatch = ''
33
rm cmd/restic/cmd_mount_integration_test.go
0 commit comments