nixpkgs/pkgs/tools/misc/findutils-static/default.nix
2005-12-26 17:13:37 +00:00

14 lines
374 B
Nix

{stdenv, fetchurl, coreutils}:
stdenv.mkDerivation {
name = "findutils-4.2.26";
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/findutils/findutils-4.2.26.tar.gz;
md5 = "9ac4e62937b1fdc4eb643d1d4bf117d3";
};
buildInputs = [coreutils];
patches = [./findutils-path.patch];
LDFLAGS="-static";
configureFlags="--disable-nls --without-included-regex";
}