nix-prefetch-git: needs findutils as it depends on find/xargs
This commit is contained in:
parent
608730af44
commit
66d6e847bb
@ -1,5 +1,5 @@
|
||||
{ stdenv, makeWrapper, buildEnv,
|
||||
git, subversion, mercurial, bazaar, cvs, gnused, coreutils, nix
|
||||
git, subversion, mercurial, bazaar, cvs, gnused, coreutils, nix, findutils
|
||||
}:
|
||||
|
||||
let mkPrefetchScript = tool: src: deps:
|
||||
@ -28,7 +28,7 @@ let mkPrefetchScript = tool: src: deps:
|
||||
in rec {
|
||||
nix-prefetch-bzr = mkPrefetchScript "bzr" ../../../build-support/fetchbzr/nix-prefetch-bzr [ bazaar ];
|
||||
nix-prefetch-cvs = mkPrefetchScript "cvs" ../../../build-support/fetchcvs/nix-prefetch-cvs [ cvs ];
|
||||
nix-prefetch-git = mkPrefetchScript "git" ../../../build-support/fetchgit/nix-prefetch-git [ git coreutils ];
|
||||
nix-prefetch-git = mkPrefetchScript "git" ../../../build-support/fetchgit/nix-prefetch-git [ git coreutils findutils ];
|
||||
nix-prefetch-hg = mkPrefetchScript "hg" ../../../build-support/fetchhg/nix-prefetch-hg [ mercurial ];
|
||||
nix-prefetch-svn = mkPrefetchScript "svn" ../../../build-support/fetchsvn/nix-prefetch-svn [ subversion ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user