nixpkgs/pkgs/tools/misc/coreutils/default.nix
Eelco Dolstra 387cbc1c92 * Enable the backwards compatibility patch (I guess it doesn't hurt on
new kernels).

svn path=/nixpkgs/branches/stdenv-updates/; revision=12989
2008-10-07 16:55:58 +00:00

21 lines
576 B
Nix

{stdenv, fetchurl, aclSupport ? false, acl}:
stdenv.mkDerivation {
name = "coreutils-6.12";
src = fetchurl {
url = mirror://gnu/coreutils/coreutils-6.12.tar.gz;
sha256 = "12pi7i2mxff5jab48pqpwlz2pi0j6sp9p7bgrcl663iiw81zglj9";
};
buildInputs = stdenv.lib.optional aclSupport acl;
# Support older Linux kernels.
patches = [ ./setting-time-backward-compatibility.patch ];
meta = {
homepage = http://www.gnu.org/software/coreutils/;
description = "The basic file, shell and text manipulation utilities of the GNU operating system";
};
}