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/guile.scm | |
parent | 7f131cf3681afe62c84db66e48430de9e54e7d7d (diff) | |
parent | 07ab4bf1fc590642307f18b4d1b8687dde3d664b (diff) | |
download | guix-a784c3077e7cdae5d8492aa540b86b8d32c9a696.tar.gz |
Merge branch 'master' into core-updates
Conflicts: distro/packages/multiprecision.scm
Diffstat (limited to 'distro/packages/guile.scm')
-rw-r--r-- | distro/packages/guile.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/distro/packages/guile.scm b/distro/packages/guile.scm index 5f9ddc6724..e7ed613670 100644 --- a/distro/packages/guile.scm +++ b/distro/packages/guile.scm @@ -17,6 +17,7 @@ ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (distro packages guile) + #:use-module (guix licenses) #:use-module (distro) #:use-module (distro packages bdw-gc) #:use-module (distro packages gawk) @@ -86,7 +87,7 @@ packaged as a library that can be embedded into programs to make them extensible. It supports many SRFIs.") (home-page "http://www.gnu.org/software/guile/") - (license "LGPLv2+"))) + (license lgpl2.0+))) (define-public guile-2.0 (package @@ -128,7 +129,7 @@ R6RS, Guile includes a module system, full access to POSIX system calls, networking support, multiple threads, dynamic linking, a foreign function call interface, and powerful string processing.") (home-page "http://www.gnu.org/software/guile/") - (license "LGPLv3+"))) + (license lgpl3+))) (define-public guile-2.0/fixed ;; A package of Guile 2.0 that's rarely changed. It is the one used @@ -181,7 +182,7 @@ Guile-Reader’s approach is similar to Common Lisp’s “read table”, but hopefully more powerful and flexible (for instance, one may instantiate as many readers as needed).") (home-page "http://www.nongnu.org/guile-reader/") - (license "GPLv3+"))) + (license gpl3+))) (define-public guile-reader/guile-1.8 ;; Guile-Reader built against Guile 1.8. |