summary refs log tree commit diff
path: root/distro/packages/multiprecision.scm
diff options
context:
space:
mode:
Diffstat (limited to 'distro/packages/multiprecision.scm')
-rw-r--r--distro/packages/multiprecision.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/distro/packages/multiprecision.scm b/distro/packages/multiprecision.scm
index 9cfde88c3d..69a05b78bb 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
@@ -112,5 +113,5 @@ with exact rounding")
     "GNU MPC is a C library for the arithmetic of complex numbers with
 arbitrarily high precision and correct rounding of the result.  It is built
 upon and follows the same principles as GNU MPFR.")
-   (license "LGPLv3+")
+   (license lgpl3+)
    (home-page "http://mpc.multiprecision.org/")))