tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
_7zz: fix passing package to tests
éclairevoyant
2 years ago
169a7d53
176c7baa
+1
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
archivers
7zz
default.nix
+1
-2
pkgs/tools/archivers/7zz/default.nix
···
11
, enableUnfree ? false
12
13
# For tests
14
-
, _7zz
15
, testers
16
}:
17
···
115
passthru = {
116
updateScript = ./update.sh;
117
tests.version = testers.testVersion {
118
-
package = _7zz;
119
command = "7zz --help";
120
};
121
};
···
11
, enableUnfree ? false
12
13
# For tests
0
14
, testers
15
}:
16
···
114
passthru = {
115
updateScript = ./update.sh;
116
tests.version = testers.testVersion {
117
+
package = finalAttrs.finalPackage;
118
command = "7zz --help";
119
};
120
};