diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-12-15 15:28:50 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-12-15 15:28:50 +0100 |
commit | a784c3077e7cdae5d8492aa540b86b8d32c9a696 (patch) | |
tree | 9a09f9a1b2f032b09f2314cf12f7965877290eaf /distro/packages/multiprecision.scm | |
parent | 7f131cf3681afe62c84db66e48430de9e54e7d7d (diff) | |
parent | 07ab4bf1fc590642307f18b4d1b8687dde3d664b (diff) | |
download | gnu-guix-a784c3077e7cdae5d8492aa540b86b8d32c9a696.tar gnu-guix-a784c3077e7cdae5d8492aa540b86b8d32c9a696.tar.gz |
Merge branch 'master' into core-updates
Conflicts:
distro/packages/multiprecision.scm
Diffstat (limited to 'distro/packages/multiprecision.scm')
-rw-r--r-- | distro/packages/multiprecision.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/distro/packages/multiprecision.scm b/distro/packages/multiprecision.scm index 73bceb3e4a..cef09b8df8 100644 --- a/distro/packages/multiprecision.scm +++ b/distro/packages/multiprecision.scm @@ -17,6 +17,7 @@ ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (distro packages multiprecision) + #:use-module (guix licenses) #:use-module (distro) #:use-module (distro packages m4) #:use-module (guix packages) @@ -63,7 +64,7 @@ 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+") + (license lgpl3+) (home-page "http://gmplib.org/"))) (define-public mpfr @@ -89,7 +90,7 @@ The main goal of MPFR is to provide a library for multiple-precision floating-point computation which is both efficient and has a well-defined semantics. It copies the good ideas from the ANSI/IEEE-754 standard for double-precision floating-point arithmetic (53-bit mantissa).") - (license "LGPLv3+") + (license lgpl3+) (home-page "http://www.mpfr.org/"))) (define-public mpc @@ -115,5 +116,5 @@ point numbers to complex numbers, providing well-defined semantics for every operation. At the same time, speed of operation at high precision is a major design goal. The library is built upon and follows the same principles as GNU MPFR.") - (license "LGPLv3+") + (license lgpl3+) (home-page "http://mpc.multiprecision.org/"))) |