diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-07-22 14:23:14 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-07-22 14:24:51 +0200 |
commit | 6fd4c6b2675b122fc9000756d0ae579356810191 (patch) | |
tree | e390a9027a16527fd9ac16474adb6e08e87e9daf /gnu/packages | |
parent | cd9f56ff5a0c187eb9d931713cb6774564163788 (diff) |
gnu: htslib: Propagate zlib.
Reported by Vedran Franke <Vedran.Franke@mdc-berlin.de>.
* gnu/packages/bioinformatics.scm (htslib)[inputs]: Move zlib from here...
[propagated-inputs]: ...to here.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d72fde00b4..5412440fb1 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4046,9 +4046,11 @@ performance.") "16ljv43sc3fxmv63w7b2ff8m1s7h89xhazwmbm1bicz8axq8fjz0")))) (build-system gnu-build-system) (inputs - `(("openssl" ,openssl) - ("curl" ,curl) - ("zlib" ,zlib))) + `(("curl" ,curl) + ("openssl" ,openssl))) + ;; This is referred to in the pkg-config file as a required library. + (propagated-inputs + `(("zlib" ,zlib))) (native-inputs `(("perl" ,perl))) (home-page "http://www.htslib.org") |