gnu: monero: Activate Trezor support.
* gnu/packages/finance.scm (monero): [native-inputs]: Add python and protobuf. [inputs]: Add libusb and protobuf. [arguments]: Add delete-dead-links phase. (monero-gui)[inputs]: Add libusb and protobuf. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
44554d86da
commit
b7a07bbd5e
|
@ -473,16 +473,20 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
("git" ,git)
|
("git" ,git)
|
||||||
("graphviz" ,graphviz)
|
("graphviz" ,graphviz)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
|
("protobuf" ,protobuf)
|
||||||
|
("python" ,python)
|
||||||
("qttools" ,qttools)))
|
("qttools" ,qttools)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("cppzmq" ,cppzmq)
|
("cppzmq" ,cppzmq)
|
||||||
("expat" ,expat)
|
("expat" ,expat)
|
||||||
("hidapi" ,hidapi)
|
("hidapi" ,hidapi)
|
||||||
("libunwind" ,libunwind)
|
|
||||||
("libsodium" ,libsodium)
|
("libsodium" ,libsodium)
|
||||||
|
("libunwind" ,libunwind)
|
||||||
|
("libusb" ,libusb)
|
||||||
("miniupnpc" ,miniupnpc)
|
("miniupnpc" ,miniupnpc)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
|
("protobuf" ,protobuf)
|
||||||
("rapidjson" ,rapidjson)
|
("rapidjson" ,rapidjson)
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
("unbound" ,unbound)
|
("unbound" ,unbound)
|
||||||
|
@ -534,7 +538,13 @@ 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 '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://getmonero.org/")
|
||||||
(synopsis "Command-line interface to the Monero currency")
|
(synopsis "Command-line interface to the Monero currency")
|
||||||
(description
|
(description
|
||||||
|
@ -563,9 +573,11 @@ the Monero command line client and daemon.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("hidapi" ,hidapi)
|
("hidapi" ,hidapi)
|
||||||
("libunwind" ,libunwind)
|
|
||||||
("libsodium" ,libsodium)
|
("libsodium" ,libsodium)
|
||||||
|
("libunwind" ,libunwind)
|
||||||
|
("libusb" ,libusb)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
|
("protobuf" ,protobuf)
|
||||||
("qtbase" ,qtbase)
|
("qtbase" ,qtbase)
|
||||||
("qtdeclarative" ,qtdeclarative)
|
("qtdeclarative" ,qtdeclarative)
|
||||||
("qtgraphicaleffects" ,qtgraphicaleffects)
|
("qtgraphicaleffects" ,qtgraphicaleffects)
|
||||||
|
|
Loading…
Reference in New Issue