* Enable the backwards compatibility patch (I guess it doesn't hurt on

new kernels).

svn path=/nixpkgs/branches/stdenv-updates/; revision=12989
This commit is contained in:
Eelco Dolstra 2008-10-07 16:55:58 +00:00
parent 648b6f6631
commit 387cbc1c92

View file

@ -8,11 +8,13 @@ stdenv.mkDerivation {
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";
};
buildInputs = stdenv.lib.optional aclSupport acl;
# Older kernels: patches = ./setting-time-backward-compatibility.patch;
}