diff options
author | Arun Isaac | 2024-10-22 23:43:46 +0100 |
---|---|---|
committer | Arun Isaac | 2024-10-25 00:53:38 +0100 |
commit | eb7beb340a9731775e8ad177e47b70dba2f2a84f (patch) | |
tree | 6a61d052bf62b8bc2f576c065be426ed684bc4ae | |
parent | ee0cb7322a2b1f02f16c4c9c723773520c094a6a (diff) | |
download | guix-bioinformatics-eb7beb340a9731775e8ad177e47b70dba2f2a84f.tar.gz |
Upgrade guix channel to 2394a7f.
* .guix-channel: Upgrade guix channel to 2394a7f.
* gn/packages/bioinformatics.scm (pplacer)[inputs]: Replace gsl-static
with (gsl "static").
* gn/packages/ocaml.scm (ocaml4.07-gsl-1)[inputs]: Replace gsl-static
with (gsl "static").
* gn/packages/static.scm (wfmash-static)[inputs]: Replace gsl-static
with (gsl "static").
-rw-r--r-- | .guix-channel | 2 | ||||
-rw-r--r-- | gn/packages/bioinformatics.scm | 2 | ||||
-rw-r--r-- | gn/packages/ocaml.scm | 2 | ||||
-rw-r--r-- | gn/packages/static.scm | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.guix-channel b/.guix-channel index e7e9a9a..4bbc28a 100644 --- a/.guix-channel +++ b/.guix-channel @@ -14,7 +14,7 @@ (name guix) (url "https://git.savannah.gnu.org/git/guix.git") (branch "master") - (commit "b0b988c41c9e0e591274495a1b2d6f27fcdae15a") + (commit "2394a7f5fbf60dd6adc0a870366adb57166b6d8b") (introduction (channel-introduction (version 0) diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 13bb00e..397b38f 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -3637,7 +3637,7 @@ let before_space s = #:findlib ocaml4.07-findlib)) (inputs (list (list zlib "static") - gsl-static + (list gsl "static") (package-with-ocaml4.07 ocaml-ounit) (package-with-ocaml4.07 ocaml-batteries) (package-with-ocaml4.07 camlzip) diff --git a/gn/packages/ocaml.scm b/gn/packages/ocaml.scm index 1f284e9..cb97868 100644 --- a/gn/packages/ocaml.scm +++ b/gn/packages/ocaml.scm @@ -40,7 +40,7 @@ "0nzp43hp8pbjqkrxnwp5lgjrabxayf61h18fjaydi0s5faq6f3xh")))) (build-system ocaml-build-system) (inputs - (list gsl-static)) + (list (list gsl "static"))) (native-inputs (list ocamlbuild)) (arguments '()) diff --git a/gn/packages/static.scm b/gn/packages/static.scm index 8b43cdb..67b4873 100644 --- a/gn/packages/static.scm +++ b/gn/packages/static.scm @@ -64,7 +64,7 @@ (string-append all " atomic pthread"))))))))) (inputs (list atomic-queue - gsl-static + (list gsl "static") htslib-minimal jemalloc (list zlib "static") |