mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add interception-dual-function-keys.
* gnu/packages/linux.scm (interception-dual-function-keys): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
52d2c0b27a
commit
3b0ead1c6a
1 changed files with 40 additions and 0 deletions
|
@ -3579,6 +3579,46 @@ (define-public interception-tools
|
||||||
;; 'README.md'.
|
;; 'README.md'.
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public interception-dual-function-keys
|
||||||
|
(package
|
||||||
|
(name "interception-dual-function-keys")
|
||||||
|
(version "1.3.0")
|
||||||
|
(home-page "https://gitlab.com/interception/linux/plugins/dual-function-keys")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1gvhkmwzl5fyyc7k8rc4rf2b9mzh05wa8wcybf9hz2x1mqkc7lmz"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("libevdev" ,libevdev)
|
||||||
|
("yaml-cpp" ,yaml-cpp)))
|
||||||
|
(arguments
|
||||||
|
`(#:make-flags (list "CC=gcc" "CXX=g++"
|
||||||
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-libevdev-path
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((libevdev (assoc-ref inputs "libevdev")))
|
||||||
|
(substitute* "config.mk"
|
||||||
|
(("/usr/include/libevdev-1.0")
|
||||||
|
(string-append libevdev "/include/libevdev-1.0")))
|
||||||
|
#t)))
|
||||||
|
;; No configure script
|
||||||
|
(delete 'configure)
|
||||||
|
;; No target 'check'
|
||||||
|
(delete 'check))))
|
||||||
|
(synopsis "Tap for one key, hold for another")
|
||||||
|
(description
|
||||||
|
"Dual Function Keys is a plugin for @code{interception-tools} that allows
|
||||||
|
one to send arbitrary keycodes when a given key is tapped or held.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public lvm2
|
(define-public lvm2
|
||||||
(package
|
(package
|
||||||
(name "lvm2")
|
(name "lvm2")
|
||||||
|
|
Loading…
Reference in a new issue