diff options
author | Christopher Baines <mail@cbaines.net> | 2022-03-01 19:48:14 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-03-01 21:44:38 +0000 |
commit | 3854558c76ac51787f0fdb4cac226b678a9ad621 (patch) | |
tree | d7f8fe9e310ddc5385598c7f84fdd5644c8c2835 /gnu/packages | |
parent | 070cc513781bd847df1c95682164f4f50da88bbb (diff) |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/package-management.scm | 4 |
1 files 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 |