nixpkgs/pkgs/tools/misc/coreutils/default.nix
Eelco Dolstra a218b9b2e7 * Updated coreutils and findutils.
svn path=/nixpkgs/branches/stdenv-updates/; revision=11685
2008-04-22 13:12:45 +00:00

16 lines
399 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "coreutils-6.11";
src = fetchurl {
url = mirror://gnu/coreutils/coreutils-6.11.tar.gz;
sha256 = "1klb7bm461nm02161wn25ivnbq2d09lidi4sdicdv4md38lpd6gb";
};
meta = {
homepage = http://www.gnu.org/software/coreutils/;
description = "The basic file, shell and text manipulation utilities of the GNU operating system";
};
}