GNU Coreutils 8.14.

svn path=/nixpkgs/branches/stdenv-updates/; revision=29848
This commit is contained in:
Ludovic Courtès 2011-10-14 21:56:16 +00:00
parent e2e7a6f1ce
commit 5d5b893223

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, perl, xz, gmp ? null
{ stdenv, fetchurl, perl, gmp ? null
, aclSupport ? false, acl ? null
, selinuxSupport? false, libselinux ? null, libsepol ? null }:
@ -6,14 +6,14 @@ assert aclSupport -> acl != null;
assert selinuxSupport -> ( (libselinux != null) && (libsepol != null) );
stdenv.mkDerivation (rec {
name = "coreutils-8.13";
name = "coreutils-8.14";
src = fetchurl {
url = "mirror://gnu/coreutils/${name}.tar.xz";
sha256 = "06xc4jfkr5h8pc6wq14ncihapf5chcwvvcjvpwkby1ngw0xbxz8b";
sha256 = "0bdh31fvd0ng2sqrrbz0a4yy084hmj76pbljksqyv4ljq4bhh4hd";
};
buildNativeInputs = [ perl xz ];
buildNativeInputs = [ perl ];
buildInputs = [ gmp ]
++ stdenv.lib.optional aclSupport acl
++ stdenv.lib.optional selinuxSupport libselinux