mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
fix bzr prefetcher on darwin
This commit is contained in:
parent
a6a729b207
commit
400b94e120
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, makeWrapper, git, subversion, mercurial, bazaar, cvs, unzip, curl }:
|
{ stdenv, makeWrapper, git, subversion, mercurial, bazaar, cvs, unzip, curl, gnused }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "nix-prefetch-scripts";
|
name = "nix-prefetch-scripts";
|
||||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation {
|
||||||
cp $src $out/bin/$name;
|
cp $src $out/bin/$name;
|
||||||
for dep in ''${@:3}; do
|
for dep in ''${@:3}; do
|
||||||
local exe=$dep/bin;
|
local exe=$dep/bin;
|
||||||
local wrapArgs="$wrapArgs --suffix PATH : $exe"
|
local wrapArgs="$wrapArgs --prefix PATH : $exe"
|
||||||
done
|
done
|
||||||
wrapProgram $out/bin/$name $wrapArgs
|
wrapProgram $out/bin/$name $wrapArgs
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
||||||
copyScript "hg" ${../../../build-support/fetchhg/nix-prefetch-hg} ${mercurial}
|
copyScript "hg" ${../../../build-support/fetchhg/nix-prefetch-hg} ${mercurial}
|
||||||
copyScript "git" ${../../../build-support/fetchgit/nix-prefetch-git} ${git}
|
copyScript "git" ${../../../build-support/fetchgit/nix-prefetch-git} ${git}
|
||||||
copyScript "svn" ${../../../build-support/fetchsvn/nix-prefetch-svn} ${subversion}
|
copyScript "svn" ${../../../build-support/fetchsvn/nix-prefetch-svn} ${subversion}
|
||||||
copyScript "bzr" ${../../../build-support/fetchbzr/nix-prefetch-bzr} ${bazaar}
|
copyScript "bzr" ${../../../build-support/fetchbzr/nix-prefetch-bzr} ${bazaar} ${gnused}
|
||||||
copyScript "cvs" ${../../../build-support/fetchcvs/nix-prefetch-cvs} ${cvs}
|
copyScript "cvs" ${../../../build-support/fetchcvs/nix-prefetch-cvs} ${cvs}
|
||||||
copyScript "zip" ${./nix-prefetch-zip} ${unzip} ${curl}
|
copyScript "zip" ${./nix-prefetch-zip} ${unzip} ${curl}
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue