From 162d6a2fdd6af13272967c77347a54934ecb45e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 15 Jan 2024 08:57:01 +0100 Subject: [PATCH] gnu: hpcguix-web: Add explicit dependency on Guile-GnuTLS. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- gnu/packages/web.scm | 6 ++++-- 1 file 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 ;;; Copyright © 2013 Aljosha Papsch -;;; Copyright © 2014-2023 Ludovic Courtès +;;; Copyright © 2014-2024 Ludovic Courtès ;;; Copyright © 2014, 2015, 2016 Mark H Weaver ;;; Copyright © 2015-2023 Ricardo Wurmus ;;; Copyright © 2018 Raoul Jean Pierre Bonnal @@ -8193,13 +8193,14 @@ (define-public hpcguix-web (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 @@ (define-public hpcguix-web 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")