gnu: Add hid-wiimote-plus.

* gnu/packages/linux.scm (hid-wiimote-plus): New variable.

Change-Id: Icd23c3e390211160905b9c84a621ca6f5fbff0a0
This commit is contained in:
Danny Milosavljevic 2024-11-12 22:13:12 +01:00
parent b10ce47d8b
commit 4e028ecc82
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -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+)))