summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-02 19:34:34 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-02 19:34:34 +0000
commit6fadcfbd039b559ddc52a2099c1cf97fb40dc35b (patch)
tree1bdcadeabfe2c905d4e61508f16a7703f598796a /pkgs/tools
parentba5c242c82429aeaccef722bb24355d081953643 (diff)
downloadnixlib-6fadcfbd039b559ddc52a2099c1cf97fb40dc35b.tar
nixlib-6fadcfbd039b559ddc52a2099c1cf97fb40dc35b.tar.gz
nixlib-6fadcfbd039b559ddc52a2099c1cf97fb40dc35b.tar.bz2
nixlib-6fadcfbd039b559ddc52a2099c1cf97fb40dc35b.tar.lz
nixlib-6fadcfbd039b559ddc52a2099c1cf97fb40dc35b.tar.xz
nixlib-6fadcfbd039b559ddc52a2099c1cf97fb40dc35b.tar.zst
nixlib-6fadcfbd039b559ddc52a2099c1cf97fb40dc35b.zip
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
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index e42e46d01022..63e423b77936 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, aclSupport ? false, acl, perl}:
+{stdenv, fetchurl, aclSupport ? false, acl, perl, gmp}:
 
 stdenv.mkDerivation rec {
   name = "coreutils-8.1";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay";
   };
 
-  buildInputs = [ perl ] ++ stdenv.lib.optional aclSupport acl;
+  buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;
 
   # The tests are known broken on Cygwin
   # (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025).