aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-03-26 02:10:19 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-03-26 02:10:19 +0100
commit4d655e48836d5be89942a38da532431316f6887b (patch)
tree40198f2f2b5aa29965e26953740c8605054f2df2
parente4ca2ae0954215864a107a875604d3679559e808 (diff)
downloadguix-4d655e48836d5be89942a38da532431316f6887b.tar.gz
guix-4d655e48836d5be89942a38da532431316f6887b.zip
gnu: Add dualsensectl.
* gnu/packages/linux.scm (dualsensectl): New variable. Change-Id: I59e20c816198da2f29d374395a5e3b4d21376b1d
-rw-r--r--gnu/packages/linux.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 53ea54daef..52f4755539 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -11770,3 +11770,28 @@ practical purposes indistinguishable from real devices.
It provides a command line program and also a Python library.")
(home-page "https://www.freedesktop.org/wiki/Evemu/")
(license license:gpl3)))
+
+(define-public dualsensectl
+ (package
+ (name "dualsensectl")
+ (version "0.7")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nowrep/dualsensectl.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "05snsp5r3hc2yc1nf0w4aam1my4h0lkxnmy7k4glxvasd9jwahzw"))))
+ (build-system meson-build-system)
+ (native-inputs
+ (list pkg-config))
+ (inputs
+ (list eudev dbus hidapi))
+ (synopsis "Linux tool for controlling PS5 DualSense controller")
+ (description "This package provides a Linux tool for controlling a PS5
+DualSense controller. It has to be already connected via USB or connected
+via Bluetooth.")
+ (home-page "https://github.com/nowrep/dualsensectl")
+ (license license:gpl2)))