blob 48afd9f877a2e7435d3ce8dabe3365fb84891bba 1375 bytes (raw)
name: gnu/packages/keyd.scm # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| | (define-module (gnu packages keyd))
(use-modules
(guix packages)
(gnu packages linux)
(guix git-download)
((guix licenses) #:prefix license:)
(guix build-system gnu))
(define-public keyd
(package
(name "keyd")
(version "2.4.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rvaiya/keyd")
(commit (string-append "v" version))))
(sha256
(base32
"1awdp863amq95y990fi4wj389ssv3ip2daqz2ph23lsahwa6f5in"))))
(arguments
(list #:tests? ; no tests
#f
#:make-flags
'(list "CC=gcc"
"PREFIX="
(string-append
"DESTDIR="
(assoc-ref %outputs "out")))
#:phases
'(modify-phases
%standard-phases
(delete 'configure)))) ; no autoconf
(build-system gnu-build-system)
(inputs (list linux-libre-headers))
(synopsis "A key remapping daemon for linux.")
(description
"Keyd is a keyboard remapping utility with intuitive ini
config file format. Keyd has several unique features, many of
which are traditionally only found in custom keyboard firmware
like QMK")
(home-page "https://github.com/rvaiya/keyd")
(license license:expat)))
|
debug log:
solving 48afd9f877 ...
found 48afd9f877 in https://yhetil.org/guix/CVS5DY5C7BGC.NFGIXCDSS1WR@fedora/
applying [1/1] https://yhetil.org/guix/CVS5DY5C7BGC.NFGIXCDSS1WR@fedora/
diff --git a/gnu/packages/keyd.scm b/gnu/packages/keyd.scm
new file mode 100644
index 0000000000..48afd9f877
Checking patch gnu/packages/keyd.scm...
Applied patch gnu/packages/keyd.scm cleanly.
index at:
100644 48afd9f877a2e7435d3ce8dabe3365fb84891bba gnu/packages/keyd.scm
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.