bdc54592c7
the compilation of older Linux kernels against newer headers (not a recommended practise!) svn path=/nixpkgs/trunk/; revision=12944
19 lines
551 B
Nix
19 lines
551 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";
|
|
};
|
|
|
|
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;
|
|
}
|