roptat pushed a commit to branch master
in repository guix.
commit 01b37d0f74e483c1197f82b67b8575c0771bf08c
Author: [email protected] <[email protected]>
Date: Tue Jul 30 17:11:59 2019 -0700
gnu: Add trezord.
* gnu/packages/finance.scm (trezord): New variable.
Signed-off-by: Julien Lepiller <[email protected]>
---
gnu/packages/finance.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 9b23013..7a5efb7 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -13,6 +13,7 @@
;;; Copyright © 2018 Arun Isaac <[email protected]>
;;; Copyright © 2019 Guillaume Le Vaillant <[email protected]>
;;; Copyright © 2019 Tanguy Le Carrour <[email protected]>
+;;; Copyright © 2019 Martin Becze <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -38,6 +39,7 @@
#:use-module (guix build-system cmake)
#:use-module (guix build-system python)
#:use-module (guix build-system glib-or-gtk)
+ #:use-module (guix build-system go)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages base)
@@ -1086,3 +1088,26 @@ financial years, budget estimates, bankcard management
and other
information.")
(home-page "http://grisbi.org")
(license license:gpl2+)))
+
+(define-public trezord
+ (package
+ (name "trezord")
+ (version "2.0.17")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/trezor/trezord-go.git")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "0nqzpq0i3crh0i4r1cppja5sn3rwi1fv9afxzwzv63096x5l30a7"))
+ (file-name (git-file-name name version))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/trezor/trezord-go"))
+ (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
+Trezor wallet.")
+ (license license:lgpl3+)))