tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nurl: use nix stable
zowoq
2 years ago
fa774ca4
879e291c
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
nurl
default.nix
+2
-2
pkgs/tools/misc/nurl/default.nix
···
7
7
, darwin
8
8
, gitMinimal
9
9
, mercurial
10
10
-
, nixVersions
10
10
+
, nix
11
11
}:
12
12
13
13
rustPlatform.buildRustPackage rec {
···
42
42
43
43
postInstall = ''
44
44
wrapProgram $out/bin/nurl \
45
45
-
--prefix PATH : ${lib.makeBinPath [ gitMinimal mercurial nixVersions.unstable ]}
45
45
+
--prefix PATH : ${lib.makeBinPath [ gitMinimal mercurial nix ]}
46
46
installManPage artifacts/nurl.1
47
47
installShellCompletion artifacts/nurl.{bash,fish} --zsh artifacts/_nurl
48
48
'';