gnu: bamm: Remove reference to %build-inputs.
* gnu/packages/bioinformatics.scm (bamm)[arguments]: Use gexp instead of %build-inputs.
This commit is contained in:
parent
4f536c4607
commit
361e0d9f27
@ -42,6 +42,7 @@
|
|||||||
(define-module (gnu packages bioinformatics)
|
(define-module (gnu packages bioinformatics)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
@ -233,9 +234,9 @@ structure of the predicted RNA.")
|
|||||||
;; Do not use bundled libhts. Do use the bundled libcfu because it has
|
;; Do not use bundled libhts. Do use the bundled libcfu because it has
|
||||||
;; been modified from its original form.
|
;; been modified from its original form.
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(let ((htslib (assoc-ref %build-inputs "htslib")))
|
,#~(let ((htslib #$(this-package-input "htslib")))
|
||||||
(list "--with-libhts-lib" (string-append htslib "/lib")
|
(list "--with-libhts-lib" (string-append htslib "/lib")
|
||||||
"--with-libhts-inc" (string-append htslib "/include/htslib")))
|
"--with-libhts-inc" (string-append htslib "/include/htslib")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'autogen
|
(add-after 'unpack 'autogen
|
||||||
|
Loading…
x
Reference in New Issue
Block a user