gnu: monero: Update to 0.18.0.0.

* gnu/packages/finance.scm (monero): Update to 0.18.0.0.
  [source]: Update snippet.
  [arguments]: Use gexps.
This commit is contained in:
Guillaume Le Vaillant 2022-08-02 11:07:06 +02:00
parent b4d9493ceb
commit e7bac8584b
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F

View File

@ -671,7 +671,7 @@ blockchain.")
;; the system's dynamically linked library.
(package
(name "monero")
(version "0.17.3.2")
(version "0.18.0.0")
(source
(origin
(method git-fetch)
@ -687,10 +687,9 @@ blockchain.")
;; Delete bundled dependencies.
(for-each
delete-file-recursively
'("external/miniupnp" "external/rapidjson"
"external/unbound"))))
'("external/miniupnp" "external/rapidjson"))))
(sha256
(base32 "19sgcbli7fc1l6ms7ma6hcz1mmpbnd296lc8a19rl410acpv45zy"))))
(base32 "1jq2v2dg50gl3cf9s61jssny5rraclxqj4cc4y0sl00ip8icj08v"))))
(build-system cmake-build-system)
(native-inputs
(list doxygen
@ -716,14 +715,14 @@ blockchain.")
xz
zeromq))
(arguments
`(#:out-of-source? #t
(list #:out-of-source? #t
#:configure-flags
(list "-DARCH=default"
#~(list "-DARCH=default"
"-DBUILD_TESTS=ON"
(string-append "-DReadline_ROOT_DIR="
(assoc-ref %build-inputs "readline")))
#$(this-package-input "readline")))
#:phases
(modify-phases %standard-phases
#~(modify-phases %standard-phases
;; tests/core_tests need a valid HOME
(add-before 'configure 'set-home
(lambda _
@ -765,8 +764,8 @@ blockchain.")
excluded-unit-tests)))))
(add-after 'install 'delete-unused-files
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(delete-file-recursively (string-append out "/include"))))))))
(delete-file-recursively
(string-append #$output "/include")))))))
(home-page "https://web.getmonero.org/")
(synopsis "Command-line interface to the Monero currency")
(description