diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-11-10 19:46:08 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-11-10 19:46:08 +0100 |
commit | 0c8d09d47b95b7e53aa362d48b90b89e995e7988 (patch) | |
tree | 5c2b73fabc7963bb7a12704429d0aaf0136bdaf8 /tuxedo-keyboard.scm | |
parent | ab6ea1bf626dc6b2b15430a18048cf0485cbf0e2 (diff) |
Diffstat (limited to 'tuxedo-keyboard.scm')
-rw-r--r-- | tuxedo-keyboard.scm | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/tuxedo-keyboard.scm b/tuxedo-keyboard.scm deleted file mode 100644 index c42f476..0000000 --- a/tuxedo-keyboard.scm +++ /dev/null @@ -1,36 +0,0 @@ -(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") - (commit commit-ref))) - (file-name (git-file-name name version)) - (sha256 - (base32 "104i050ymrj0h0p52q52mn496gchq2k1gnnvxcqffrb69gzsa153")))) - (arguments - ;; Has no tests - `(#:tests? #f)) - (native-inputs - `(("linux-headers" ,linux-libre-headers))) - (build-system linux-module-build-system) - (home-page "http://www.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+)))) |