nixpkgs/pkgs/tools/misc/coreutils-5/default.nix
Eelco Dolstra aa84bce64d * Get rid of all references to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=13299
2008-11-14 16:57:19 +00:00

11 lines
233 B
Nix

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