mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 09:43:43 -05:00
gnu: tabixpp: Fix cross-compilation.
tabixpp links to libbz2 from bzip2 and liblzma from xz. Therefore, bzip2 and xz should be listed in inputs even though they are already present implicitly in native-inputs. Else, cross-compilation will fail. * gnu/packages/bioinformatics.scm (tabixpp)[inputs]: Add bzip2 and xz. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
cbda00c499
commit
086c7c143c
1 changed files with 1 additions and 1 deletions
|
@ -14296,7 +14296,7 @@ (define-public tabixpp
|
|||
(delete-file-recursively "htslib")))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
(list htslib zlib))
|
||||
(list bzip2 htslib xz zlib))
|
||||
(arguments
|
||||
(list #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "CXX=" #$(cxx-for-target))
|
||||
|
|
Loading…
Reference in a new issue