* findutils updated to 4.2.30.
svn path=/nixpkgs/trunk/; revision=8750
This commit is contained in:
parent
1e371a927e
commit
e85fb3ce90
@ -1,14 +1,14 @@
|
|||||||
{stdenv, fetchurl, coreutils}:
|
{stdenv, fetchurl, coreutils}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "findutils-4.2.29";
|
name = "findutils-4.2.30";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.nluug.nl/pub/gnu/findutils/findutils-4.2.29.tar.gz;
|
url = ftp://ftp.nluug.nl/pub/gnu/findutils/findutils-4.2.30.tar.gz;
|
||||||
md5 = "24e76434ca74ba3c2c6ad621eb64e1ff";
|
sha256 = "1x1s0h1gf4hxh6xi6vq336sz8zsh4hvnsslc7607z41l82xrqjrl";
|
||||||
};
|
};
|
||||||
buildInputs = [coreutils];
|
buildInputs = [coreutils];
|
||||||
patches = [./findutils-path.patch]
|
patches = [./findutils-path.patch]
|
||||||
# Note: the dietlibc patch is just to get findutils to compile.
|
# Note: the dietlibc patch is just to get findutils to compile.
|
||||||
# The locate command probably won't work though.
|
# The locate command probably won't work though.
|
||||||
++ (if stdenv ? isDietLibC then [./dietlibc-hack.patch] else []);
|
++ stdenv.lib.optional (stdenv ? isDietLibC) ./dietlibc-hack.patch;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user