gnu: Add keyd.

* gnu/packages/linux.scm (keyd): New variable.

Change-Id: Ib69e4dea661dc72c3116442779b5b496d37b37bd
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
ShinyZero0 2025-02-25 18:33:25 +05:30 committed by Nicolas Goaziou
parent 7790e32556
commit 5ccae0d1bf
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -10032,6 +10032,39 @@ libraries are used by the @command{sysdig} command-line utility.")
types and interfaces and translates so that the X server can use them.") types and interfaces and translates so that the X server can use them.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public keyd
(package
(name "keyd")
(version "2.5.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rvaiya/keyd")
(commit (string-append "v" version))))
(sha256
(base32
"0nkra6lwdjhjcwj6486cgy562n4bcp98fjgl52rj8pp76i15yad7"))))
(arguments
(list #:tests? #f ; tests require root
#:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
"PREFIX="
(string-append "DESTDIR=" #$output))
#:phases
'(modify-phases
%standard-phases
(delete 'configure)))) ; no autoconf
(build-system gnu-build-system)
(inputs (list linux-libre-headers))
(synopsis "Key remapping daemon for Linux")
(description
"Keyd is a keyboard remapping utility with intuitive ini configuration
file format. Keyd has several features, many of which are traditionally only
found in custom keyboard firmware like QMK.")
(home-page "https://github.com/rvaiya/keyd")
(license license:expat)))
(define-public pipewire (define-public pipewire
(package (package
(name "pipewire") (name "pipewire")