a218b9b2e7
svn path=/nixpkgs/branches/stdenv-updates/; revision=11685
16 lines
399 B
Nix
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";
|
|
};
|
|
}
|