mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
7790e32556
commit
5ccae0d1bf
1 changed files with 33 additions and 0 deletions
|
@ -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.")
|
||||
(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
|
||||
(package
|
||||
(name "pipewire")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue