guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: nar-herder: Use guile from guix.


From: guix-commits
Subject: 02/02: gnu: nar-herder: Use guile from guix.
Date: Tue, 1 Mar 2022 17:28:00 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 3854558c76ac51787f0fdb4cac226b678a9ad621
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Tue Mar 1 19:48:14 2022 +0000

    gnu: nar-herder: Use guile from guix.
    
    Since the nar-herder uses Guile modules from Guix, it should be built with 
the
    same Guile version.
    
    * gnu/packages/package-management.scm (nar-herder)[native-inputs,inputs]: 
Use
    the guile package from guix.
---
 gnu/packages/package-management.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index 411efaadf6..def62a4f82 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -1643,7 +1643,7 @@ in an isolated environment, in separate namespaces.")
              gnutls
 
              ;; Guile libraries are needed here for cross-compilation.
-             guile-3.0
+             (car (assoc-ref (package-native-inputs guix) "guile"))
              guile-json-4
              guile-gcrypt
              guix
@@ -1652,7 +1652,7 @@ in an isolated environment, in separate namespaces.")
              guile-sqlite3))
       (inputs
        (list bash-minimal
-             guile-3.0))
+             (car (assoc-ref (package-native-inputs guix) "guile"))))
       (propagated-inputs
        (list guile-json-4
              guile-gcrypt



reply via email to

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