* On Linux, build coreutils with ACL support.

svn path=/nixpkgs/branches/stdenv-updates/; revision=11848
This commit is contained in:
Eelco Dolstra
2008-05-19 15:12:03 +00:00
parent 79ed6fcf36
commit 1d6f0ab989
3 changed files with 29 additions and 15 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, aclSupport ? false, acl}:
stdenv.mkDerivation {
name = "coreutils-6.11";
@@ -12,4 +12,6 @@ stdenv.mkDerivation {
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;
}