From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56667) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jP7GD-0003uw-J4 for guix-patches@gnu.org; Thu, 16 Apr 2020 12:21:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jP7GA-0006UJ-0n for guix-patches@gnu.org; Thu, 16 Apr 2020 12:21:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55876) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jP7G9-0006Tz-QD for guix-patches@gnu.org; Thu, 16 Apr 2020 12:21:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jP7G9-0004Do-LU for guix-patches@gnu.org; Thu, 16 Apr 2020 12:21:01 -0400 Subject: [bug#40666] [PATCH 2/2] gnu: Add trezord-udev-rules. References: <20200416161713.3466-1-mjbecze@riseup.net> In-Reply-To: <20200416161713.3466-1-mjbecze@riseup.net> Resent-Message-ID: From: Martin Becze Date: Thu, 16 Apr 2020 11:20:44 -0500 Message-Id: <20200416162044.3548-1-mjbecze@riseup.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40666@debbugs.gnu.org Cc: Martin Becze * gnu/packages/finance.scm (trezord-udev-rules): New variable. --- gnu/packages/finance.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 0c05530a31..66ca35483c 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -41,6 +41,7 @@ #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) + #:use-module (guix build-system copy) #:use-module (guix build-system emacs) #:use-module (guix build-system python) #:use-module (guix build-system glib-or-gtk) @@ -1165,6 +1166,33 @@ information.") (home-page "https://grisbi.org") (license license:gpl2+))) +(define-public trezord-udev-rules + (let ((commit "bff7fdfe436c727982cc553bdfb29a9021b423b0") + (revision "0")) + (package + (name "trezord-udev-rules") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/trezor/trezor-common.git") + (commit commit))) + (sha256 + (base32 + "14mrirrn68if7ja6qdk9qlxs1hv0f21vrxy5ncnms0gx9iwakp2l")) + (file-name (git-file-name name version)))) + (build-system copy-build-system) + (arguments + '(#:install-plan + '(("./udev/51-trezor.rules" "lib/udev/rules.d/")))) + (home-page "https://github.com/trezor/trezor-common") + (synopsis "The udev rules for trezord.") + (description + "This contains the udev rules for trezord. This will let a user run +trezord as a regular user instead of needing to it run as root.") + (license license:lgpl3+)))) + (define-public trezord (package (name "trezord") -- 2.26.0