* Prevent a retained dependency on static-tools in stdenv-linux
(findutils stores a reference to coreutils). svn path=/nixpkgs/trunk/; revision=3318
This commit is contained in:
parent
620d5b9d4a
commit
41ceac357c
@ -40,7 +40,7 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
findutils = (import ../tools/misc/findutils) {
|
findutils = (import ../tools/misc/findutils) {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv coreutils;
|
||||||
};
|
};
|
||||||
|
|
||||||
getopt = (import ../tools/misc/getopt) {
|
getopt = (import ../tools/misc/getopt) {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl, coreutils}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "findutils-4.2.20";
|
name = "findutils-4.2.20";
|
||||||
@ -6,4 +6,5 @@ stdenv.mkDerivation {
|
|||||||
url = http://ftp.gnu.org/gnu/findutils/findutils-4.2.20.tar.gz;
|
url = http://ftp.gnu.org/gnu/findutils/findutils-4.2.20.tar.gz;
|
||||||
md5 = "7c8e12165b221dd67a19c00d780437a4";
|
md5 = "7c8e12165b221dd67a19c00d780437a4";
|
||||||
};
|
};
|
||||||
|
buildInputs = [coreutils];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user