summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2021-12-04 00:31:20 +0100
committerRicardo Wurmus <rekado@elephly.net>2021-12-04 00:31:20 +0100
commit22d9097b5e34dc6648522ea1554f36f61f39b5f1 (patch)
treeabe9469446c4366ce23ac1fa8020a4f03d46aaef /gnu
parenta6b6084649586490d760e1c5aa10910527aaecf7 (diff)
downloadguix-patches-22d9097b5e34dc6648522ea1554f36f61f39b5f1.tar
guix-patches-22d9097b5e34dc6648522ea1554f36f61f39b5f1.tar.gz
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.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index f1190c8ab1..d06ac2d905 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -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")