nixpkgs/pkgs/tools/misc/coreutils/default.nix
Armijn Hemel f590067ee0 new autoconf, gettext and coreutils. Tested to build in work in NixOS.
svn path=/nixpkgs/trunk/; revision=5532
2006-06-28 21:35:37 +00:00

10 lines
212 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "coreutils-5.97";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/coreutils/coreutils-5.97.tar.gz;
md5 = "bdec4b75c76ac9bf51b6dd1747d3b06e";
};
}