diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-01 20:22:23 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-01 20:22:23 +0200 |
commit | 65479200648de179d8c2f1d6767d21c9c784f8db (patch) | |
tree | b8206e955772faea336953c6c9e1e12360690c20 /gnu | |
parent | 09028f0a8356e60b8444dc04dfdb5f4685281654 (diff) | |
download | guix-65479200648de179d8c2f1d6767d21c9c784f8db.tar.gz guix-65479200648de179d8c2f1d6767d21c9c784f8db.zip |
gnu: monero-gui: Update to 0.17.2.3.
* gnu/packages/finance.scm (monero-gui): Update to 0.17.2.3.
[arguments]: Update 'fix-build' phase. Remove 'generate-zxcvbn-c' phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/finance.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index b0f0a0c9de..9863f16684 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -752,7 +752,7 @@ the Monero command line client and daemon.") (define-public monero-gui (package (name "monero-gui") - (version "0.17.2.2") + (version "0.17.2.3") (source (origin (method git-fetch) @@ -769,7 +769,7 @@ the Monero command line client and daemon.") (delete-file-recursively "monero") #t)) (sha256 - (base32 "0n7gfhm13y18ffqsqdajl4knd4h8m772fz6lh1lpkh198pwmw8f9")))) + (base32 "0qb746z1sxqrja7q9lqhhbm64v83sn67az4k7gs5q90iaw584qfc")))) (build-system qt-build-system) (native-inputs `(,@(package-native-inputs monero) @@ -807,16 +807,11 @@ the Monero command line client and daemon.") (substitute* "src/version.js.in" (("@VERSION_TAG_GUI@") ,version)) - (substitute* "src/zxcvbn-c/makefile" - (("\\?=") "=")) (substitute* "external/CMakeLists.txt" (("add_library\\(quirc" all) (string-append "set(CMAKE_C_FLAGS \"${CMAKE_C_FLAGS} -fPIC\")\n" all))))) - (add-before 'configure 'generate-zxcvbn-c-header - (lambda _ - (invoke "make" "-C" "src/zxcvbn-c" "dict-src.h"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) |