gnu: trezord: Update to 2.0.30.
* gnu/packages/finance.scm (trezord): Update to 2.0.30. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
2d9acf675a
commit
2d8deaa06e
1 changed files with 10 additions and 4 deletions
|
@ -70,6 +70,7 @@
|
||||||
#:use-module (gnu packages dbm)
|
#:use-module (gnu packages dbm)
|
||||||
#:use-module (gnu packages gettext)
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
|
@ -1230,20 +1231,25 @@ trezord as a regular user instead of needing to it run as root.")
|
||||||
(define-public trezord
|
(define-public trezord
|
||||||
(package
|
(package
|
||||||
(name "trezord")
|
(name "trezord")
|
||||||
(version "2.0.29")
|
(version "2.0.30")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/trezor/trezord-go")
|
(url "https://github.com/trezor/trezord-go")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ks1fa0027s3xp0z6qp0dxmayvrb4dwwscfhbx7da0khp153f2cp"))
|
"1hzvk0wfgg7b4wpqjk3738yqxlv3pj5i7zxwm0jady2h97hmrqrr"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:import-path "github.com/trezor/trezord-go"))
|
'(#:import-path "github.com/trezor/trezord-go"))
|
||||||
|
(native-inputs
|
||||||
|
`(("github.com/gorilla-csrf" ,go-github-com-gorilla-csrf)
|
||||||
|
("github.com/gorilla/handlers" ,go-github-com-gorilla-handlers)
|
||||||
|
("github.com/gorilla/mux" ,go-github-com-gorilla-mux)
|
||||||
|
("gopkg.in/natefinch/lumberjack.v2" ,go-gopkg-in-natefinch-lumberjack.v2)))
|
||||||
(home-page "https://trezor.io")
|
(home-page "https://trezor.io")
|
||||||
(synopsis "Trezor Communication Daemon aka Trezor Bridge (written in Go)")
|
(synopsis "Trezor Communication Daemon aka Trezor Bridge (written in Go)")
|
||||||
(description "This allows a Trezor hardware wallet to communicate to the
|
(description "This allows a Trezor hardware wallet to communicate to the
|
||||||
|
|
Reference in a new issue