mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: mash: Replace references to %build-inputs.
* gnu/packages/bioinformatics.scm (mash)[arguments]: Use a gexp.
This commit is contained in:
parent
22d9097b5e
commit
114eb987cb
1 changed files with 3 additions and 3 deletions
|
@ -5311,9 +5311,9 @@ (define-public mash
|
|||
(arguments
|
||||
`(#:tests? #f ; No tests.
|
||||
#:configure-flags
|
||||
(list
|
||||
(string-append "--with-capnp=" (assoc-ref %build-inputs "capnproto"))
|
||||
(string-append "--with-gsl=" (assoc-ref %build-inputs "gsl")))
|
||||
,#~(list
|
||||
(string-append "--with-capnp=" #$(this-package-input "capnproto"))
|
||||
(string-append "--with-gsl=" #$(this-package-input "gsl")))
|
||||
#:make-flags (list "CC=gcc")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue