guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: hpcguix-web: Add explicit dependency on Guil


From: guix-commits
Subject: branch master updated: gnu: hpcguix-web: Add explicit dependency on Guile-GnuTLS.
Date: Mon, 15 Jan 2024 03:00:45 -0500

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 162d6a2fdd gnu: hpcguix-web: Add explicit dependency on Guile-GnuTLS.
162d6a2fdd is described below

commit 162d6a2fdd6af13272967c77347a54934ecb45e6
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Jan 15 08:57:01 2024 +0100

    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
---
 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 <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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]