gnu: guix: Build with Guile 3.0.4.
Since Guile 3.0.4 bytecode is not readable by 3.0.2, build the dependents of 'guix' with 3.0.4 as well. * gnu/packages/package-management.scm (guix)[inputs, native-inputs]: Use GUILE-3.0-LATEST. (gwl, guix-jupyter): Likewise. * gnu/packages/web.scm (hpcguix-web): Likewise. * gnu/packages/ci.scm (cuirass): Likewise. * gnu/packages/emacs-xyz.scm (emacs-guix): Likewise.master
parent
9e91f8623f
commit
a2991de0f4
|
@ -120,7 +120,7 @@
|
|||
`("GUILE_LOAD_COMPILED_PATH" ":" prefix (,objs)))
|
||||
#t))))))
|
||||
(inputs
|
||||
`(("guile" ,guile-3.0)
|
||||
`(("guile" ,@(assoc-ref (package-native-inputs guix) "guile"))
|
||||
("guile-fibers" ,guile-fibers)
|
||||
("guile-gcrypt" ,guile-gcrypt)
|
||||
("guile-json" ,guile-json-4)
|
||||
|
|
|
@ -2533,7 +2533,7 @@ type, for example: packages, buffers, files, etc.")
|
|||
`(("pkg-config" ,pkg-config)
|
||||
("emacs" ,emacs-minimal)))
|
||||
(inputs
|
||||
`(("guile" ,guile-3.0)
|
||||
`(("guile" ,@(assoc-ref (package-native-inputs guix) "guile"))
|
||||
("guix" ,guix)))
|
||||
(propagated-inputs
|
||||
`(("geiser" ,emacs-geiser)
|
||||
|
|
|
@ -319,7 +319,7 @@ $(prefix)/etc/init.d\n")))
|
|||
|
||||
;; Guile libraries are needed here for
|
||||
;; cross-compilation.
|
||||
("guile" ,guile-3.0)
|
||||
("guile" ,guile-3.0-latest) ;for faster builds
|
||||
("gnutls" ,gnutls)
|
||||
("guile-gcrypt" ,guile-gcrypt)
|
||||
("guile-json" ,guile-json-4)
|
||||
|
@ -346,7 +346,7 @@ $(prefix)/etc/init.d\n")))
|
|||
("sqlite" ,sqlite)
|
||||
("libgcrypt" ,libgcrypt)
|
||||
|
||||
("guile" ,guile-3.0)
|
||||
("guile" ,guile-3.0-latest)
|
||||
|
||||
;; Some of the tests use "unshare" when it is available.
|
||||
("util-linux" ,util-linux)
|
||||
|
@ -897,7 +897,7 @@ written entirely in Python.")))
|
|||
("texinfo" ,texinfo)
|
||||
("graphviz" ,graphviz)))
|
||||
(inputs
|
||||
`(("guile" ,guile-3.0)))
|
||||
`(("guile" ,@(assoc-ref (package-native-inputs guix) "guile"))))
|
||||
(propagated-inputs
|
||||
`(("guix" ,guix)
|
||||
("guile-commonmark" ,guile-commonmark)
|
||||
|
@ -995,7 +995,7 @@ environments.")
|
|||
("python-ipykernel" ,python-ipykernel)))
|
||||
(inputs
|
||||
`(("guix" ,guix)
|
||||
("guile" ,guile-3.0)))
|
||||
("guile" ,@(assoc-ref (package-native-inputs guix) "guile"))))
|
||||
(propagated-inputs
|
||||
`(("guile-json" ,guile-json-4)
|
||||
("guile-simple-zmq" ,guile-simple-zmq)
|
||||
|
|
|
@ -7370,9 +7370,9 @@ compressed JSON header blocks.
|
|||
("uglify-js" ,uglify-js)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("guix" ,guix)))
|
||||
`(("guile" ,@(assoc-ref (package-native-inputs guix) "guile"))))
|
||||
(propagated-inputs
|
||||
`(("guile" ,guile-3.0)
|
||||
`(("guile" ,@(assoc-ref (package-native-inputs guix) "guile"))
|
||||
("guile-commonmark" ,guile-commonmark)
|
||||
("guile-json" ,guile-json-4)))
|
||||
(home-page "https://github.com/UMCUGenetics/hpcguix-web")
|
||||
|
|
Reference in New Issue