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.
This commit is contained in:
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

View file

@ -5334,13 +5334,13 @@ (define-public mash
(("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")