me
/
guix
Archived
1
0
Fork 0

gnu: mash: Move htslib and capnproto to regular inputs.

* gnu/packages/bioinformatics.scm (mash)[native-inputs]: Move htslib and
capnproto from here...
[inputs]: ...to here.
master
Ricardo Wurmus 2021-12-04 00:31:20 +01:00
parent a6b6084649
commit 22d9097b5e
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 5 deletions

View File

@ -5334,13 +5334,13 @@ sequences).")
(("c\\+\\+11") "c++14"))
#t)))))
(native-inputs
`(("autoconf" ,autoconf)
;; Capnproto and htslib are statically embedded in the final
`(("autoconf" ,autoconf)))
(inputs
`(;; Capnproto and htslib are statically embedded in the final
;; application. Therefore we also list their licenses, below.
("capnproto" ,capnproto)
("htslib" ,htslib)))
(inputs
`(("gsl" ,gsl)
("htslib" ,htslib)
("gsl" ,gsl)
("zlib" ,zlib)))
(supported-systems '("x86_64-linux"))
(home-page "https://mash.readthedocs.io")