[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: Add usbrelay.
From: |
guix-commits |
Subject: |
03/07: gnu: Add usbrelay. |
Date: |
Fri, 1 Sep 2023 11:11:17 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 71381703dbb9c693d3fb9a05955cce30b146b45d
Author: Evgeny Pisemsky <evgeny@pisemsky.com>
AuthorDate: Mon May 1 21:09:42 2023 +0300
gnu: Add usbrelay.
* gnu/packages/hardware.scm (usbrelay): New variable.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/hardware.scm | 36 +++++++++++++++++++++++++++++++++++-
1 file changed, 35 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm
index ab343d1dac..5188bb2910 100644
--- a/gnu/packages/hardware.scm
+++ b/gnu/packages/hardware.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2018–2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
-;;; Copyright © 2021 Evgeny Pisemsky <evgeny@pisemsky.com>
+;;; Copyright © 2021, 2023 Evgeny Pisemsky <evgeny@pisemsky.com>
;;; Copyright © 2021 Léo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Denis Carikli <GNUtoo@cyberdimension.org>
;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com>
@@ -1459,3 +1459,37 @@ your network, send SCPI commands, and receive
responses.")
on the LXI Consortium standard which defines the communication protocols for
modern instrumentation and data acquision systems using Ethernet.")
(license license:bsd-3)))
+
+(define-public usbrelay
+ (package
+ (name "usbrelay")
+ (version "1.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/darrylb123/usbrelay")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0fr3wglr2c6myg4k6ai2p5z38prclcnk2ngik15sq16fnp6qg750"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure)) ;no configure script
+ #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output)
+ (string-append "LDFLAGS=-Wl,-rpath="
+ (string-append #$output "/lib"))
+ "LDCONFIG=true"
+ "USBMAJOR=$(USBLIBVER)")
+ #:tests? #f)) ;no test suite
+ (inputs (list hidapi))
+ (home-page "https://github.com/darrylb123/usbrelay")
+ (synopsis "Control USB relay modules")
+ (description
+ "This is a Linux driver based on hidapi for a variety of inexpensive
+HID compatible USB relay modules available with different number of
+output relays.")
+ (license license:gpl2+)))
- branch master updated (4e531e55dc -> 4d4bf9ab1f), guix-commits, 2023/09/01
- 05/07: gnu: Add libcppgenerate., guix-commits, 2023/09/01
- 04/07: gnu: Add tcptrack., guix-commits, 2023/09/01
- 07/07: gnu: sound-juicer: Update to 3.40.0., guix-commits, 2023/09/01
- 01/07: doc: cookbook: Document the configuration of a Yubikey with KeePassXC., guix-commits, 2023/09/01
- 03/07: gnu: Add usbrelay.,
guix-commits <=
- 06/07: gnu: dbus-cxx: Update to 2.4.0., guix-commits, 2023/09/01
- 02/07: cookbook: Add a recipe for running Guix System on a Kimsufi server., guix-commits, 2023/09/01