blob: 6fd54cfcc854cd068eb001d424656232db7d033f (
plain)
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
|
(define-module (tuxedo-keyboard)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (gnu packages linux)
#:use-module (guix git-download)
#:use-module (guix build-system linux-module))
(define-public tuxedo-keyboard
(let ((commit-ref "84442d0b2f3d3bff691ce8b96bb3baced4d692c0"))
(package
(name "tuxedo-keyboard")
(version commit-ref)
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tuxedocomputers/tuxedo-keyboard.git")
(commit commit-ref)))
(sha256
(base32 "104i050ymrj0h0p52q52mn496gchq2k1gnnvxcqffrb69gzsa153"))))
(arguments
`(#:tests? #f ; Has no tests
))
(native-inputs
`(("linux-headers" ,linux-libre-headers)))
(build-system linux-module-build-system)
(home-page "http://tuxedocomputers.com")
(synopsis "TUXEDO Computers Kernel Module for keyboard backlighting.")
(description
"Additions:
@itemize
@item Sysfs interface to control the brightness, mode, color, on/off state
@item DKMS Ready
@item Full RGB Color Support
@item WMI Support for FN-Keys
@end itemize")
(license license:gpl3+))))
|