me
/
guix
Archived
1
0
Fork 0

gnu: monero-gui: Fix build.

* gnu/packages/finance.scm (monero-gui)[arguments]: Fix 'configure-flags'
  using gexp. Fix 'extract-monero-sources' phase.
master
Guillaume Le Vaillant 2021-08-23 16:14:53 +02:00
parent 263f5b30d2
commit 721bf4c001
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 6 additions and 7 deletions

View File

@ -55,6 +55,7 @@
#:use-module (guix build-system go)
#:use-module (guix build-system qt)
#:use-module (guix deprecation)
#:use-module (guix gexp)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages aidc)
@ -790,10 +791,9 @@ the Monero command line client and daemon.")
(arguments
`(#:tests? #f ; No tests
#:configure-flags
(list "-DARCH=default"
"-DENABLE_PASS_STRENGTH_METER=ON"
(string-append "-DReadline_ROOT_DIR="
(assoc-ref %build-inputs "readline")))
,#~(list "-DARCH=default"
"-DENABLE_PASS_STRENGTH_METER=ON"
(string-append "-DReadline_ROOT_DIR=" #$readline))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'extract-monero-sources
@ -801,9 +801,8 @@ the Monero command line client and daemon.")
;; to build the GUI.
(lambda* (#:key inputs #:allow-other-keys)
(mkdir-p "monero")
(invoke "tar" "-xv" "--strip-components=1"
"-C" "monero"
"-f" (assoc-ref inputs "monero-source"))))
(copy-recursively (assoc-ref inputs "monero-source")
"monero")))
(add-after 'extract-monero-sources 'fix-build
(lambda _
(substitute* "src/version.js.in"