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>master
parent
58e1caa0b1
commit
df90b6e793
|
@ -477,7 +477,7 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
;; the system's dynamically linked library.
|
;; the system's dynamically linked library.
|
||||||
(package
|
(package
|
||||||
(name "monero")
|
(name "monero")
|
||||||
(version "0.14.1.2")
|
(version "0.15.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -498,7 +498,7 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
#t))
|
#t))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"00zl883c7lcd9z7g4y3vv7rxmr7ppzrxdblnhk32r9l3qzyw55r6"))))
|
"19y4kcj4agws7swfa3draysb1y18c3xb13r8cg0faxx1dlm0zbnr"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("doxygen" ,doxygen)
|
`(("doxygen" ,doxygen)
|
||||||
|
@ -571,13 +571,18 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
(invoke "tests/unit_tests/unit_tests"
|
(invoke "tests/unit_tests/unit_tests"
|
||||||
(string-append "--gtest_filter=-"
|
(string-append "--gtest_filter=-"
|
||||||
excluded-unit-tests)))))
|
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
|
(add-after 'install 'delete-dead-links
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(delete-file (string-append out "/lib/libprotobuf.so"))
|
(delete-file (string-append out "/lib/libprotobuf.so"))
|
||||||
(delete-file (string-append out "/lib/libusb-1.0.so"))
|
(delete-file (string-append out "/lib/libusb-1.0.so"))
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://getmonero.org/")
|
(home-page "https://web.getmonero.org/")
|
||||||
(synopsis "Command-line interface to the Monero currency")
|
(synopsis "Command-line interface to the Monero currency")
|
||||||
(description
|
(description
|
||||||
"Monero is a secure, private, untraceable currency. This package provides
|
"Monero is a secure, private, untraceable currency. This package provides
|
||||||
|
|
Reference in New Issue