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.
This commit is contained in:
parent
070cc51378
commit
3854558c76
1 changed files with 2 additions and 2 deletions
|
@ -1643,7 +1643,7 @@ in an isolated environment, in separate namespaces.")
|
||||||
gnutls
|
gnutls
|
||||||
|
|
||||||
;; Guile libraries are needed here for cross-compilation.
|
;; Guile libraries are needed here for cross-compilation.
|
||||||
guile-3.0
|
(car (assoc-ref (package-native-inputs guix) "guile"))
|
||||||
guile-json-4
|
guile-json-4
|
||||||
guile-gcrypt
|
guile-gcrypt
|
||||||
guix
|
guix
|
||||||
|
@ -1652,7 +1652,7 @@ in an isolated environment, in separate namespaces.")
|
||||||
guile-sqlite3))
|
guile-sqlite3))
|
||||||
(inputs
|
(inputs
|
||||||
(list bash-minimal
|
(list bash-minimal
|
||||||
guile-3.0))
|
(car (assoc-ref (package-native-inputs guix) "guile"))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list guile-json-4
|
(list guile-json-4
|
||||||
guile-gcrypt
|
guile-gcrypt
|
||||||
|
|
Reference in a new issue