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