gnu: monero-gui: Update to 0.17.1.4.
* gnu/packages/finance.scm (monero-gui): Update to 0.17.1.4. [inputs]: Remove qtlocation and qtmultimedia. [arguments]: Remove custom CMAKE_BUILD_TYPE, and set CMAKE_PREFIX_PATH to empty string in 'configure-flags' to fix a "file name too long" error during build. Remove patching of "monero/src/version.cpp.in" in 'fix-build' phase.
This commit is contained in:
parent
0da64c60fb
commit
903ff4254f
1 changed files with 3 additions and 8 deletions
|
@ -727,7 +727,7 @@ the Monero command line client and daemon.")
|
||||||
(define-public monero-gui
|
(define-public monero-gui
|
||||||
(package
|
(package
|
||||||
(name "monero-gui")
|
(name "monero-gui")
|
||||||
(version "0.17.1.1")
|
(version "0.17.1.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -736,7 +736,7 @@ the Monero command line client and daemon.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0aqhp4rmqsgwjb875kgh6qwz0wyyiag1fksyic9cnhgg5j5y95nx"))))
|
(base32 "1ixjfdlvwr2an2s9jaql240bk7jpq5hhm5c4hww0bicyy3fp12ng"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(,@(package-native-inputs monero)
|
`(,@(package-native-inputs monero)
|
||||||
|
@ -748,8 +748,6 @@ the Monero command line client and daemon.")
|
||||||
("qtbase" ,qtbase)
|
("qtbase" ,qtbase)
|
||||||
("qtdeclarative" ,qtdeclarative)
|
("qtdeclarative" ,qtdeclarative)
|
||||||
("qtgraphicaleffects" ,qtgraphicaleffects)
|
("qtgraphicaleffects" ,qtgraphicaleffects)
|
||||||
("qtlocation" ,qtlocation)
|
|
||||||
("qtmultimedia" ,qtmultimedia)
|
|
||||||
("qtquickcontrols" ,qtquickcontrols)
|
("qtquickcontrols" ,qtquickcontrols)
|
||||||
("qtquickcontrols2",qtquickcontrols2)
|
("qtquickcontrols2",qtquickcontrols2)
|
||||||
("qtsvg" ,qtsvg)
|
("qtsvg" ,qtsvg)
|
||||||
|
@ -761,7 +759,7 @@ the Monero command line client and daemon.")
|
||||||
"-DENABLE_PASS_STRENGTH_METER=ON"
|
"-DENABLE_PASS_STRENGTH_METER=ON"
|
||||||
(string-append "-DReadline_ROOT_DIR="
|
(string-append "-DReadline_ROOT_DIR="
|
||||||
(assoc-ref %build-inputs "readline"))
|
(assoc-ref %build-inputs "readline"))
|
||||||
"-DCMAKE_BUILD_TYPE=Release")
|
"-DCMAKE_PREFIX_PATH=\"\"")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'extract-monero-sources
|
(add-after 'unpack 'extract-monero-sources
|
||||||
|
@ -774,9 +772,6 @@ the Monero command line client and daemon.")
|
||||||
#t))
|
#t))
|
||||||
(add-after 'extract-monero-sources 'fix-build
|
(add-after 'extract-monero-sources 'fix-build
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "monero/src/version.cpp.in"
|
|
||||||
(("@VERSION_IS_RELEASE@")
|
|
||||||
"false"))
|
|
||||||
(substitute* "src/version.js.in"
|
(substitute* "src/version.js.in"
|
||||||
(("@VERSION_TAG_GUI@")
|
(("@VERSION_TAG_GUI@")
|
||||||
,version))
|
,version))
|
||||||
|
|
Reference in a new issue