guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add hid-wiimote-plus.


From: guix-commits
Subject: branch master updated: gnu: Add hid-wiimote-plus.
Date: Tue, 12 Nov 2024 17:21:54 -0500

This is an automated email from the git hooks/post-receive script.

dannym pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4e028ecc82 gnu: Add hid-wiimote-plus.
4e028ecc82 is described below

commit 4e028ecc823bcdbb69c391ad7079085cd7749b15
Author: Danny Milosavljevic <dannym@friendly-machines.com>
AuthorDate: Tue Nov 12 22:13:12 2024 +0100

    gnu: Add hid-wiimote-plus.
    
    * gnu/packages/linux.scm (hid-wiimote-plus): New variable.
    
    Change-Id: Icd23c3e390211160905b9c84a621ca6f5fbff0a0
---
 gnu/packages/linux.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index a2a0359055..2fdb877992 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -11200,3 +11200,26 @@ System Management Unit for certain AMD Ryzen 
processors.
 This includes access to the System Management Network.")
     (home-page "https://gitlab.com/leogx9r/ryzen_smu";)
     (license license:gpl2)))
+
+(define-public hid-wiimote-plus
+  (package
+    (name "hid-wiimote-plus")
+    (version "0.9.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/dkosmari/hid-wiimote-plus.git";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1rkp311x60jm73xlqypxsp375rx3fa55jyrspz1aqjga0q6cvswi"))))
+    (build-system linux-module-build-system)
+    (arguments
+     (list #:tests? #f)) ; No tests.
+    (synopsis "WiiMote HID kernel module")
+    (description "This package provides a WiiMote driver that follows the
+Linux input convention.  Specifically, that allows you to use the D-pad
+as a gamepad.")
+    (home-page "https://github.com/dkosmari/hid-wiimote-plus";)
+    (license license:gpl2+)))



reply via email to

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