nixpkgs/pkgs/tools/misc/findutils/default.nix
Eelco Dolstra e85fb3ce90 * findutils updated to 4.2.30.
svn path=/nixpkgs/trunk/; revision=8750
2007-05-24 13:49:40 +00:00

15 lines
509 B
Nix

{stdenv, fetchurl, coreutils}:
stdenv.mkDerivation {
name = "findutils-4.2.30";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/findutils/findutils-4.2.30.tar.gz;
sha256 = "1x1s0h1gf4hxh6xi6vq336sz8zsh4hvnsslc7607z41l82xrqjrl";
};
buildInputs = [coreutils];
patches = [./findutils-path.patch]
# Note: the dietlibc patch is just to get findutils to compile.
# The locate command probably won't work though.
++ stdenv.lib.optional (stdenv ? isDietLibC) ./dietlibc-hack.patch;
}