emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#36866: closed ([PATCH] added trezord package)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#36866: closed ([PATCH] added trezord package)
Date: Thu, 01 Aug 2019 20:17:02 +0000

Your message dated Thu, 1 Aug 2019 22:16:15 +0200
with message-id <address@hidden>
and subject line Re: [PATCH 2/2] fixed copyright line and use git-fetch
has caused the debbugs.gnu.org bug report #36866,
regarding [PATCH] added trezord package
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
36866: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=36866
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] added trezord package Date: Tue, 30 Jul 2019 17:11:59 -0700
 
---
 gnu/packages/trezor.scm | 48 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 gnu/packages/trezor.scm

diff --git a/gnu/packages/trezor.scm b/gnu/packages/trezor.scm
new file mode 100644
index 0000000000..6da61d7f56
--- /dev/null
+++ b/gnu/packages/trezor.scm
@@ -0,0 +1,48 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright � 2018 Pierre Neidhardt <address@hidden>
+;;; Copyright � 2019 Tobias Geerinckx-Rice <address@hidden>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or
(at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages trezor)
+  #:use-module (guix licenses) 
+  #:use-module (guix packages)
+  #:use-module (guix git-download)
+  #:use-module (guix download)
+  #:use-module (guix build-system go)
+  #:use-module (gnu packages golang))
+
+(define-public trezord
+  (package
+    (name "trezord")
+    (version "2.0.17")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/trezor/trezord-go/archive/v"; version
+             ".tar.gz"))
+       (sha256
+        (base32
"1r68yb1q8v3vbxi95gsq1nfjw2v59sykchrbbc2kppy3cymfk411"))
+       (file-name (string-append name "-" version "-source"))))
+    (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 lgpl3+)))
-- 
2.22.0




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH 2/2] fixed copyright line and use git-fetch Date: Thu, 1 Aug 2019 22:16:15 +0200
Pushed as 01b37d0f74e483c1197f82b67b8575c0771bf08c, thank you! I've put
your package definition in finance.scm, along with bitcoin-core,
monero, and other trezor stuff. I also changed the version back to what
it was in your original patch ("2.0.17" instead of "v2.0.17") and used
(string-append "v" version) as the commit.

Thank you again for your contribution!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]