diff options
author | Andreas Enge <andreas@enge.fr> | 2015-07-05 19:11:04 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-07-05 19:11:04 +0200 |
commit | 9884d7ec8e74eb09de38d51af710ac859196dbff (patch) | |
tree | 263f923d4fb6e4ed7565e0482d9cbb01d95bee1f /guix/download.scm | |
parent | cb6a802c01a7782a5608a1774c8d0ccf5b73a906 (diff) | |
download | gnu-guix-9884d7ec8e74eb09de38d51af710ac859196dbff.tar gnu-guix-9884d7ec8e74eb09de38d51af710ac859196dbff.tar.gz |
download: Reference tls instead of renamed gnutls module.
* guix/download.scm (gnutls-package): Use new module name tls instead
of gnutls.
Diffstat (limited to 'guix/download.scm')
-rw-r--r-- | guix/download.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/download.scm b/guix/download.scm index 9a80af7de6..f0a7a2928e 100644 --- a/guix/download.scm +++ b/guix/download.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> -;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr> +;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -204,7 +204,7 @@ (define (gnutls-package) "Return the default GnuTLS package." - (let ((module (resolve-interface '(gnu packages gnutls)))) + (let ((module (resolve-interface '(gnu packages tls)))) (module-ref module 'gnutls))) (define* (url-fetch url hash-algo hash |