mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: monero: Fix detection of readline library.
* gnu/packages/finance.scm (monero)[arguments]: Define 'Readline_ROOT_DIR' in 'configure-flags'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c0c0e9b836
commit
44554d86da
1 changed files with 6 additions and 3 deletions
|
@ -490,9 +490,12 @@ (define-public monero
|
|||
("zeromq" ,zeromq)))
|
||||
(arguments
|
||||
`(#:out-of-source? #t
|
||||
#:configure-flags '("-DARCH=default"
|
||||
"-DBUILD_TESTS=ON"
|
||||
"-DBUILD_GUI_DEPS=ON")
|
||||
#:configure-flags
|
||||
(list "-DARCH=default"
|
||||
"-DBUILD_TESTS=ON"
|
||||
"-DBUILD_GUI_DEPS=ON"
|
||||
(string-append "-DReadline_ROOT_DIR="
|
||||
(assoc-ref %build-inputs "readline")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; tests/core_tests need a valid HOME
|
||||
|
|
Loading…
Reference in a new issue