3
0
Fork 0
forked from mirrors/nixpkgs

nix-prefetch-git: add missing coreutils dependency

At runtime, `readlink` is a dependency
This commit is contained in:
zimbatm 2015-11-16 11:53:29 +01:00
parent 58d870d4b5
commit 76bf9c54ea

View file

@ -1,5 +1,6 @@
{ stdenv, makeWrapper, git, subversion, mercurial, bazaar, cvs, unzip, curl, gnused }:
{ stdenv, makeWrapper,
git, subversion, mercurial, bazaar, cvs, unzip, curl, gnused, coreutils
}:
stdenv.mkDerivation {
name = "nix-prefetch-scripts";
@ -22,7 +23,7 @@ stdenv.mkDerivation {
}
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} ${coreutils}
copyScript "svn" ${../../../build-support/fetchsvn/nix-prefetch-svn} ${subversion}
copyScript "bzr" ${../../../build-support/fetchbzr/nix-prefetch-bzr} ${bazaar}
copyScript "cvs" ${../../../build-support/fetchcvs/nix-prefetch-cvs} ${cvs}