nixpkgs/pkgs/tools/misc/coreutils-5/default.nix
Lluís Batlle i Rossell 9effdda93b Updating the dependencies of the new coreutils: they need perl.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18494
2009-11-20 20:26:36 +00:00

11 lines
246 B
Nix

{stdenv, fetchurl, perl ? null}:
stdenv.mkDerivation {
name = "coreutils-5.97";
src = fetchurl {
url = http://nixos.org/tarballs/coreutils-5.97.tar.gz;
md5 = "bdec4b75c76ac9bf51b6dd1747d3b06e";
};
patches = [./dietlibc.patch];
}