aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2023-05-06 19:12:16 +0200
committerLudovic Courtès <ludo@gnu.org>2023-05-06 19:12:16 +0200
commitc3d7c09b9f8522f37a88e3a2d92ab38ce4a9c65a (patch)
treee0001e02c08cbf22b5a34c5f0723c753ba3275c0
parentc625e5b64d0a6cb7ffbf2ef971d4c990b1f5c5c1 (diff)
downloadguix-c3d7c09b9f8522f37a88e3a2d92ab38ce4a9c65a.tar
guix-c3d7c09b9f8522f37a88e3a2d92ab38ce4a9c65a.tar.gz
Revert "download: Refer to the 'guile-gnutls' package and not 'gnutls'."
This reverts commit c625e5b64d0a6cb7ffbf2ef971d4c990b1f5c5c1, which introduced a circular dependency: the origin of guile-gnutls relies on 'git-download', which would now depend on guile-gnutls.
-rw-r--r--guix/android-repo-download.scm2
-rw-r--r--guix/cvs-download.scm2
-rw-r--r--guix/git-download.scm2
-rw-r--r--guix/hg-download.scm2
4 files changed, 4 insertions, 4 deletions
diff --git a/guix/android-repo-download.scm b/guix/android-repo-download.scm
index 9a134c269a..1d1b9e2f09 100644
--- a/guix/android-repo-download.scm
+++ b/guix/android-repo-download.scm
@@ -82,7 +82,7 @@ generic name if unset."
(module-ref (resolve-interface '(gnu packages guile)) 'guile-lzlib))
(define gnutls
- (module-ref (resolve-interface '(gnu packages tls)) 'guile-gnutls))
+ (module-ref (resolve-interface '(gnu packages tls)) 'gnutls))
(define config.scm
(scheme-file "config.scm"
diff --git a/guix/cvs-download.scm b/guix/cvs-download.scm
index c0c526b9db..22af2461e9 100644
--- a/guix/cvs-download.scm
+++ b/guix/cvs-download.scm
@@ -68,7 +68,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)) 'guile-gnutls))
+ (module-ref (resolve-interface '(gnu packages tls)) 'gnutls))
(define modules
(delete '(guix config)
diff --git a/guix/git-download.scm b/guix/git-download.scm
index d88f4c40ee..027ef47468 100644
--- a/guix/git-download.scm
+++ b/guix/git-download.scm
@@ -105,7 +105,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-lzlib))
(define gnutls
- (module-ref (resolve-interface '(gnu packages tls)) 'guile-gnutls))
+ (module-ref (resolve-interface '(gnu packages tls)) 'gnutls))
(define glibc-locales
;; Note: pick the '-final' variant to avoid circular dependency on
diff --git a/guix/hg-download.scm b/guix/hg-download.scm
index 6d02de47e4..13135082fa 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)) 'guile-gnutls))
+ (module-ref (resolve-interface '(gnu packages tls)) 'gnutls))
(define modules
(delete '(guix config)