8cd1b893cf
* Added some meta attributes. svn path=/nixpkgs/branches/stdenv-updates/; revision=10511
16 lines
399 B
Nix
16 lines
399 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "coreutils-6.10";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnu/coreutils/coreutils-6.10.tar.gz;
|
|
sha256 = "0zpbxfl16sq45s53fxw43i9i8lrdcc845714c1j5f84zi13ka08x";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.gnu.org/software/coreutils/;
|
|
description = "The basic file, shell and text manipulation utilities of the GNU operating system";
|
|
};
|
|
}
|