diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-13 21:58:01 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-13 21:58:01 +0100 |
commit | 85a8a5f5562f22f5364371833a24a3366c2ccb20 (patch) | |
tree | 2b4bf871d6291b26dadc94098f42ec2c732e1015 | |
parent | 468bdabb56c95f1bc9caa0db8ba62b5a049ecd69 (diff) | |
download | guix-85a8a5f5562f22f5364371833a24a3366c2ccb20.tar.gz guix-85a8a5f5562f22f5364371833a24a3366c2ccb20.zip |
distro: openssl: Fix the `license' field.
* distro/packages/openssl.scm: Add renamer for (guix licenses). Adjust
accordingly.
-rw-r--r-- | distro/packages/openssl.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distro/packages/openssl.scm b/distro/packages/openssl.scm index 4018e46a49..503f593bdd 100644 --- a/distro/packages/openssl.scm +++ b/distro/packages/openssl.scm @@ -19,7 +19,7 @@ (define-module (distro packages openssl) #:use-module (distro) #:use-module (distro packages perl) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:renamer (symbol-prefix-proc 'license:)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) @@ -64,5 +64,5 @@ (synopsis "OpenSSL, an SSL/TLS implementation") (description "OpenSSL is an implementation of SSL/TLS") - (license openssl) + (license license:openssl) (home-page "http://www.openssl.org/"))) |