diff options
author | Martin Becze <mjbecze@riseup.net> | 2020-11-30 14:24:08 -0600 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-12-08 08:50:43 +0000 |
commit | 2d8deaa06e8d2d836f0580cad6cac5eb06c4973d (patch) | |
tree | 7248ce756184088d76ce221817709a5517d07e12 /gnu/packages/finance.scm | |
parent | 2d9acf675ab14aa2fff0d1aa97d8d0c0d2a575ba (diff) | |
download | guix-2d8deaa06e8d2d836f0580cad6cac5eb06c4973d.tar.gz |
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>
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index b19d28c123..df6d6fa424 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -70,6 +70,7 @@ #:use-module (gnu packages dbm) #:use-module (gnu packages gettext) #:use-module (gnu packages gnome) + #:use-module (gnu packages golang) #:use-module (gnu packages glib) #:use-module (gnu packages gnupg) #: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 (package (name "trezord") - (version "2.0.29") + (version "2.0.30") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trezor/trezord-go") - (commit (string-append "v" version)))) + (url "https://github.com/trezor/trezord-go") + (commit (string-append "v" version)))) (sha256 (base32 - "1ks1fa0027s3xp0z6qp0dxmayvrb4dwwscfhbx7da0khp153f2cp")) + "1hzvk0wfgg7b4wpqjk3738yqxlv3pj5i7zxwm0jady2h97hmrqrr")) (file-name (git-file-name name version)))) (build-system go-build-system) (arguments '(#: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") (synopsis "Trezor Communication Daemon aka Trezor Bridge (written in Go)") (description "This allows a Trezor hardware wallet to communicate to the |