1d6f0ab989
svn path=/nixpkgs/branches/stdenv-updates/; revision=11848
18 lines
477 B
Nix
18 lines
477 B
Nix
{stdenv, fetchurl, aclSupport ? false, acl}:
|
|
|
|
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";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional aclSupport acl;
|
|
}
|