tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
cargo-seek: use versionCheckKeepEnvironment
Defelo
8 months ago
3daa8fdf
90917c52
+3
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ca
cargo-seek
package.nix
+3
-7
pkgs/by-name/ca/cargo-seek/package.nix
···
22
23
cargoHash = "sha256-DyXRbtvCJte7mCQKusipeikr981vMHPEVYcGSwVI5Kg=";
24
25
-
nativeBuildInputs = [
26
-
pkg-config
27
-
];
28
29
-
buildInputs = [
30
-
openssl
31
-
];
32
33
doInstallCheck = true;
34
nativeInstallCheckInputs = [
···
36
writableTmpDirAsHomeHook
37
];
38
versionCheckProgramArg = "--version";
39
-
versionCheckDontIgnoreEnvironment = true;
40
41
passthru.updateScript = nix-update-script { };
42
···
22
23
cargoHash = "sha256-DyXRbtvCJte7mCQKusipeikr981vMHPEVYcGSwVI5Kg=";
24
25
+
nativeBuildInputs = [ pkg-config ];
0
0
26
27
+
buildInputs = [ openssl ];
0
0
28
29
doInstallCheck = true;
30
nativeInstallCheckInputs = [
···
32
writableTmpDirAsHomeHook
33
];
34
versionCheckProgramArg = "--version";
35
+
versionCheckKeepEnvironment = [ "HOME" ];
36
37
passthru.updateScript = nix-update-script { };
38