diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-05-06 18:17:25 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-06 18:19:13 +0200 |
commit | c625e5b64d0a6cb7ffbf2ef971d4c990b1f5c5c1 (patch) | |
tree | 50ed4d3ac2ac8811188ac12798eafb23f9a83ece /guix/hg-download.scm | |
parent | 8ffe52df47353a3ae31375c0666aa6122bf4cf0b (diff) |
download: Refer to the 'guile-gnutls' package and not 'gnutls'.
This is a followup to 305794762cbb57d252d5305b69a18cec6528baef, which
removed Guile bindings from 'gnutls'.
* guix/android-repo-download.scm (android-repo-fetch): Refer to
'guile-gnutls instead of 'gnutls.
* guix/cvs-download.scm (cvs-fetch): Likewise.
* guix/git-download.scm (git-fetch): Likewise.
* guix/hg-download.scm (hg-fetch): Likewise.
Diffstat (limited to 'guix/hg-download.scm')
-rw-r--r-- | guix/hg-download.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/hg-download.scm b/guix/hg-download.scm index 13135082fa..6d02de47e4 100644 --- a/guix/hg-download.scm +++ b/guix/hg-download.scm @@ -79,7 +79,7 @@ HASH-ALGO (a symbol). Use NAME as the file name, or a generic name if #f." (module-ref (resolve-interface '(gnu packages guile)) 'guile-json-4)) (define gnutls - (module-ref (resolve-interface '(gnu packages tls)) 'gnutls)) + (module-ref (resolve-interface '(gnu packages tls)) 'guile-gnutls)) (define modules (delete '(guix config) |