* coreutils 8.15.
svn path=/nixpkgs/branches/stdenv-updates/; revision=31643
This commit is contained in:
parent
923054c924
commit
f7159c195a
@ -7,12 +7,12 @@
|
|||||||
assert aclSupport -> acl != null;
|
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.14";
|
name = "coreutils-8.15";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/coreutils/${name}.tar.xz";
|
url = "mirror://gnu/coreutils/${name}.tar.xz";
|
||||||
sha256 = "0bdh31fvd0ng2sqrrbz0a4yy084hmj76pbljksqyv4ljq4bhh4hd";
|
sha256 = "176lgw810xw84c6fz5xwhydxggkndmzggl0pxqzldbjf85vv6zl3";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildNativeInputs = [ perl xz ];
|
buildNativeInputs = [ perl xz ];
|
||||||
@ -43,6 +43,8 @@ stdenv.mkDerivation (rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
NIX_LDFLAGS = stdenv.lib.optionalString selinuxSupport "-lsepol";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.gnu.org/software/coreutils/;
|
homepage = http://www.gnu.org/software/coreutils/;
|
||||||
description = "The basic file, shell and text manipulation utilities of the GNU operating system";
|
description = "The basic file, shell and text manipulation utilities of the GNU operating system";
|
||||||
@ -58,5 +60,5 @@ stdenv.mkDerivation (rec {
|
|||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
};
|
};
|
||||||
} // (if selinuxSupport then { NIX_LDFLAGS = "-lsepol"; } else { } ) )
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user