gnu: Add htslib-for-stringtie.

* gnu/packages/bioinformatics.scm (htslib-for-stringtie): New variable.
* gnu/packages/patches/htslib-for-stringtie.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
This commit is contained in:
Ricardo Wurmus 2022-01-11 14:15:04 +01:00
parent 5b200dbfb0
commit 9966f98b1b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC
3 changed files with 39 additions and 0 deletions

View file

@ -4884,6 +4884,18 @@ data. It also provides the @command{bgzip}, @command{htsfile}, and
(native-inputs
`(("perl" ,perl)))))
(define htslib-for-stringtie
(package
(inherit htslib)
(source (origin
(inherit (package-source htslib))
(patches
(search-patches "htslib-for-stringtie.patch"))))
(arguments
`(#:configure-flags '("--with-libdeflate")))
(inputs
(list bzip2 libdeflate openssl))))
(define-public idr
(package
(name "idr")