94fe7734fa
* GCC 3.4.5. * Updated several other stdenv packages. * Modified the builders of several packages to use the generic builder. svn path=/nixpkgs/trunk/; revision=4336
12 lines
294 B
Nix
12 lines
294 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];
|
|
}
|