diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-01-15 08:57:01 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-01-15 08:57:01 +0100 |
commit | 162d6a2fdd6af13272967c77347a54934ecb45e6 (patch) | |
tree | 5b0e4f095d6328f160ad6cbcf28394ca065c31be /gnu/packages | |
parent | f6afaf58b0a0b04e5023141c8f56c204f9779e19 (diff) | |
download | guix-162d6a2fdd6af13272967c77347a54934ecb45e6.tar.gz |
gnu: hpcguix-web: Add explicit dependency on Guile-GnuTLS.
This is necessary in hpcguix-web 0.4.1 to connect to https://disarchive.guix.gnu.org. * gnu/packages/web.scm (hpcguix-web)[arguments]: In ‘wrap-program’ phase, add guile-gnutls to the wrapper’s search path. [inputs]: Add GUILE-GNUTLS. Change-Id: Ic4d6f65adeb763a404fc24c7e1c87fd7d26550c7
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/web.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 5a29d0d855..47c58f8c38 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013 Aljosha Papsch <misc@rpapsch.de> -;;; Copyright © 2014-2023 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014-2024 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015-2023 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2018 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com> @@ -8193,13 +8193,14 @@ compressed JSON header blocks. (guile (assoc-ref inputs "guile")) (gcrypt (assoc-ref inputs "guile-gcrypt")) (git (assoc-ref inputs "guile-git")) + (gnutls (assoc-ref inputs "guile-gnutls")) (bs (assoc-ref inputs "guile-bytestructures")) (json (assoc-ref inputs "guile-json")) (zlib (assoc-ref inputs "guile-zlib")) (syntax (assoc-ref inputs "guile-syntax-highlight")) (guile-cm (assoc-ref inputs "guile-commonmark")) - (deps (list guile gcrypt git bs zlib guile-cm + (deps (list guile gcrypt git gnutls bs zlib guile-cm syntax guix json)) (effective (read-line @@ -8231,6 +8232,7 @@ compressed JSON header blocks. guile-commonmark guile-json-4 guile-syntax-highlight + guile-gnutls ;used to connect to https://disarchive.guix.gnu.org bash-minimal)) (home-page "https://github.com/UMCUGenetics/hpcguix-web") (synopsis "Web interface for cluster deployments of Guix") |