coreutils: added missing xz build input

svn path=/nixpkgs/branches/stdenv-updates/; revision=30028
This commit is contained in:
Peter Simons 2011-10-26 09:58:19 +00:00
parent dfd063cf12
commit 61c4b72f0e

View file

@ -1,6 +1,8 @@
{ stdenv, fetchurl, perl, gmp ? null
, aclSupport ? false, acl ? null
, selinuxSupport? false, libselinux ? null, libsepol ? null }:
, selinuxSupport? false, libselinux ? null, libsepol ? null
, xz
}:
assert aclSupport -> acl != null;
assert selinuxSupport -> ( (libselinux != null) && (libsepol != null) );
@ -13,7 +15,7 @@ stdenv.mkDerivation (rec {
sha256 = "0bdh31fvd0ng2sqrrbz0a4yy084hmj76pbljksqyv4ljq4bhh4hd";
};
buildNativeInputs = [ perl ];
buildNativeInputs = [ perl xz ];
buildInputs = [ gmp ]
++ stdenv.lib.optional aclSupport acl
++ stdenv.lib.optional selinuxSupport libselinux