diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2019-11-09 11:54:53 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-11-10 01:58:17 +0100 |
commit | df90b6e793716983d548e972314a1b0e12dc735b (patch) | |
tree | 5692b2ef3716927ee944288a8b66cdb816075d8e /gnu/packages/finance.scm | |
parent | 58e1caa0b13bc3e91daefad77c30257f3c9d7ce9 (diff) | |
download | patches-df90b6e793716983d548e972314a1b0e12dc735b.tar patches-df90b6e793716983d548e972314a1b0e12dc735b.tar.gz |
gnu: monero: Update to 0.15.0.0.
* gnu/packages/finance.scm (monero): Update to 0.15.0.0.
[arguments]: Add 'install-librandomx' phase.
[home-page]: Update url.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index c9a1637412..d7e56f5bb6 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -477,7 +477,7 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch ;; the system's dynamically linked library. (package (name "monero") - (version "0.14.1.2") + (version "0.15.0.0") (source (origin (method git-fetch) @@ -498,7 +498,7 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch #t)) (sha256 (base32 - "00zl883c7lcd9z7g4y3vv7rxmr7ppzrxdblnhk32r9l3qzyw55r6")))) + "19y4kcj4agws7swfa3draysb1y18c3xb13r8cg0faxx1dlm0zbnr")))) (build-system cmake-build-system) (native-inputs `(("doxygen" ,doxygen) @@ -571,13 +571,18 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch (invoke "tests/unit_tests/unit_tests" (string-append "--gtest_filter=-" excluded-unit-tests))))) + (add-after 'install 'install-librandomx + (lambda* (#:key outputs #:allow-other-keys) + (let ((lib (string-append (assoc-ref outputs "out") "/lib"))) + (install-file "external/randomx/librandomx.a" lib) + #t))) (add-after 'install 'delete-dead-links (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (delete-file (string-append out "/lib/libprotobuf.so")) (delete-file (string-append out "/lib/libusb-1.0.so")) #t)))))) - (home-page "https://getmonero.org/") + (home-page "https://web.getmonero.org/") (synopsis "Command-line interface to the Monero currency") (description "Monero is a secure, private, untraceable currency. This package provides |