summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-07-11 15:48:11 +0200
committerLudovic Courtès <ludo@gnu.org>2012-07-11 15:48:11 +0200
commiteb229e889af72b4630ac577fd87f701723000fcc (patch)
treea35b1947c041530eff036a273889d6685c8d04ae
parent4ac3df42904e432133fd76cbc190434fe11efada (diff)
downloadpatches-eb229e889af72b4630ac577fd87f701723000fcc.tar
patches-eb229e889af72b4630ac577fd87f701723000fcc.tar.gz
distro: Add GMP.
* distro/base.scm (gmp): New variable. (guile-1.8, guile-2.0): Use it.
-rw-r--r--distro/base.scm46
1 files changed, 44 insertions, 2 deletions
diff --git a/distro/base.scm b/distro/base.scm
index 86f9811ed4..b4d6b37159 100644
--- a/distro/base.scm
+++ b/distro/base.scm
@@ -156,6 +156,48 @@ macro processor in its own right.")
(license "GPLv3+")
(home-page "http://www.gnu.org/software/m4/")))
+(define-public gmp
+ (package
+ (name "gmp")
+ (version "5.0.5")
+ (source (origin
+ (method http-fetch)
+ (uri (string-append "http://ftp.gnu.org/gnu/gmp-" version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1jfymbr90mpn0zw5sg001llqnvf2462y77vgjknrmfs1rjn8ln0z"))))
+ (build-system gnu-build-system)
+ (native-inputs `(("m4" ,m4)))
+ (arguments `(#:configure-flags
+ '(;; Build a "fat binary", with routines for several
+ ;; sub-architectures.
+ "--enable-fat"
+ "--enable-cxx")))
+ (description "GMP, the GNU multiple precision arithmetic library")
+ (long-description
+ "GMP is a free library for arbitrary precision arithmetic, operating on
+signed integers, rational numbers, and floating point numbers. There is no
+practical limit to the precision except the ones implied by the available
+memory in the machine GMP runs on. GMP has a rich set of functions, and the
+functions have a regular interface.
+
+The main target applications for GMP are cryptography applications and
+research, Internet security applications, algebra systems, computational
+algebra research, etc.
+
+GMP is carefully designed to be as fast as possible, both for small operands
+and for huge operands. The speed is achieved by using fullwords as the basic
+arithmetic type, by using fast algorithms, with highly optimised assembly
+code for the most common inner loops for a lot of CPUs, and by a general
+emphasis on speed.
+
+GMP is faster than any other bignum library. The advantage for GMP increases
+with the operand sizes for many operations, since GMP uses asymptotically
+faster algorithms.")
+ (license "LGPLv3+")
+ (home-page "http://gmplib.org/")))
+
(define-public guile-1.8
(package
(name "guile")
@@ -193,7 +235,7 @@ macro processor in its own right.")
;; Since `guile-1.8.pc' has "Libs: ... -lgmp -lltdl", these must be
;; propagated.
- (propagated-inputs `(("gmp" ,(nixpkgs-derivation "gmp"))
+ (propagated-inputs `(("gmp" ,gmp)
("libtool" ,(nixpkgs-derivation "libtool"))))
;; When cross-compiling, a native version of Guile itself is needed.
@@ -235,7 +277,7 @@ extensible. It supports many SRFIs.")
;; The headers and/or `guile-2.0.pc' refer to these packages, so they
;; must be propagated.
("bdw-gc" ,(nixpkgs-derivation "boehmgc"))
- ("gmp" ,(nixpkgs-derivation "gmp"))))
+ ("gmp" ,gmp)))
(self-native-input? #t)