Building coreutils with gmp, only because it is possible to do so.
I don't know the advantage, though. svn path=/nixpkgs/branches/stdenv-updates/; revision=18770
This commit is contained in:
parent
ba5c242c82
commit
6fadcfbd03
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, aclSupport ? false, acl, perl}:
|
{stdenv, fetchurl, aclSupport ? false, acl, perl, gmp}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "coreutils-8.1";
|
name = "coreutils-8.1";
|
||||||
|
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay";
|
sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl ] ++ stdenv.lib.optional aclSupport acl;
|
buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;
|
||||||
|
|
||||||
# The tests are known broken on Cygwin
|
# The tests are known broken on Cygwin
|
||||||
# (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025).
|
# (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025).
|
||||||
|
|
|
@ -517,7 +517,7 @@ let
|
||||||
then import ../tools/misc/coreutils-5
|
then import ../tools/misc/coreutils-5
|
||||||
else import ../tools/misc/coreutils)
|
else import ../tools/misc/coreutils)
|
||||||
{
|
{
|
||||||
inherit fetchurl stdenv acl perl;
|
inherit fetchurl stdenv acl perl gmp;
|
||||||
aclSupport = stdenv.isLinux;
|
aclSupport = stdenv.isLinux;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue