GNU Coreutils 8.13
svn path=/nixpkgs/branches/stdenv-updates/; revision=29191
This commit is contained in:
parent
306b85df73
commit
8715ac105b
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, perl, gmp ? null
|
{ stdenv, fetchurl, perl, xz, gmp ? null
|
||||||
, aclSupport ? false, acl ? null
|
, aclSupport ? false, acl ? null
|
||||||
, selinuxSupport? false, libselinux ? null, libsepol ? null }:
|
, selinuxSupport? false, libselinux ? null, libsepol ? null }:
|
||||||
|
|
||||||
@ -6,14 +6,14 @@ assert aclSupport -> acl != null;
|
|||||||
assert selinuxSupport -> ( (libselinux != null) && (libsepol != null) );
|
assert selinuxSupport -> ( (libselinux != null) && (libsepol != null) );
|
||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
name = "coreutils-8.10";
|
name = "coreutils-8.13";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/coreutils/${name}.tar.gz";
|
url = "mirror://gnu/coreutils/${name}.tar.xz";
|
||||||
sha256 = "11fr0hkdk9h7a5ggpp3hj45ryvq3gc8ri2kksbgn7v8rjmp1x1jb";
|
sha256 = "06xc4jfkr5h8pc6wq14ncihapf5chcwvvcjvpwkby1ngw0xbxz8b";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildNativeInputs = [ perl ];
|
buildNativeInputs = [ perl xz ];
|
||||||
buildInputs = [ gmp ]
|
buildInputs = [ gmp ]
|
||||||
++ stdenv.lib.optional aclSupport acl
|
++ stdenv.lib.optional aclSupport acl
|
||||||
++ stdenv.lib.optional selinuxSupport libselinux
|
++ stdenv.lib.optional selinuxSupport libselinux
|
||||||
|
Loading…
x
Reference in New Issue
Block a user