Skip to content
Snippets Groups Projects
Unverified Commit f2984c72 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

Use Guile-zlib package.

* README (Requirements): Add Guile-zlib.
* build-aux/guix.scm: Ditto.
* src/cuirass/base.scm: Use Guile-zlib instead of (guix zlib).
parent 1bcccbab
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,7 @@ Cuirass currently depends on the following packages:
- Guile-JSON 3.x
- Guile-SQLite3
- Guile-Git
- Guile-zlib
- Fibers
A convenient way to install those dependencies is to install Guix and execute
......
......@@ -68,9 +68,11 @@
(let* ((out (assoc-ref outputs "out"))
(json (assoc-ref inputs "guile-json"))
(sqlite (assoc-ref inputs "guile-sqlite3"))
(zlib (assoc-ref inputs "guile-zlib"))
(guix (assoc-ref inputs "guix"))
(mods (string-append json "/share/guile/site/3.0:"
sqlite "/share/guile/site/3.0:"
zlib "/share/guile/site/3.0:"
guix "/share/guile/site/3.0")))
(wrap-program (string-append out "/bin/cuirass")
`("GUILE_LOAD_PATH" ":" prefix (,mods))
......@@ -82,6 +84,7 @@
"guile-json"
"guile-sqlite3"
"guile-git"
"guile-zlib"
"guix")))
(native-inputs
(map spec+package-list
......
......@@ -32,7 +32,7 @@
#:use-module (guix store)
#:use-module (guix git)
#:use-module (guix cache)
#:use-module (guix zlib)
#:use-module (zlib)
#:use-module ((guix config) #:select (%state-directory))
#:use-module (git)
#:use-module (ice-9 binary-ports)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment