guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: guix: Add guile-bytestructures to the search path.


From: Ludovic Courtès
Subject: 02/05: gnu: guix: Add guile-bytestructures to the search path.
Date: Tue, 28 Nov 2017 09:20:56 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit dd1640eed606e21c09c4028dfa8aaeb1a071c6cf
Author: Ludovic Courtès <address@hidden>
Date:   Tue Nov 28 13:29:47 2017 +0100

    gnu: guix: Add guile-bytestructures to the search path.
    
    * gnu/packages/package-management.scm (guix)[arguments]: In
    'wrap-program' phase, add guile-bytestructures to the path.
---
 gnu/packages/package-management.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index 6d18fa0..307e17d 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -196,15 +196,17 @@
                         #t))
                     (add-after 'install 'wrap-program
                       (lambda* (#:key inputs outputs #:allow-other-keys)
-                        ;; Make sure the 'guix' command finds GnuTLS and
-                        ;; Guile-JSON automatically.
+                        ;; Make sure the 'guix' command finds GnuTLS,
+                        ;; Guile-JSON, and Guile-Git automatically.
                         (let* ((out    (assoc-ref outputs "out"))
                                (guile  (assoc-ref inputs "guile"))
                                (json   (assoc-ref inputs "guile-json"))
                                (git    (assoc-ref inputs "guile-git"))
+                               (bs     (assoc-ref inputs
+                                                  "guile-bytestructures"))
                                (ssh    (assoc-ref inputs "guile-ssh"))
                                (gnutls (assoc-ref inputs "gnutls"))
-                               (deps   (list json gnutls git ssh))
+                               (deps   (list json gnutls git bs ssh))
                                (effective
                                 (read-line
                                  (open-pipe* OPEN_READ



reply via email to

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