From 61c4b72f0ed70c46a2f0041db871226581763c6f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 26 Oct 2011 09:58:19 +0000 Subject: [PATCH] coreutils: added missing xz build input svn path=/nixpkgs/branches/stdenv-updates/; revision=30028 --- pkgs/tools/misc/coreutils/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 26c4d0fbdce..b1a740ab5f9 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -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