gnu: Add xkbprint.
* gnu/packages/xorg.scm (xkbprint): New public variable.
This commit is contained in:
parent
55d2103369
commit
15844291fe
1 changed files with 26 additions and 0 deletions
|
@ -3983,6 +3983,32 @@ make keyboards more accessible to people with physical impairments.")
|
|||
requested commands if they occur.")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public xkbprint
|
||||
(package
|
||||
(name "xkbprint")
|
||||
(version "1.0.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://xorg/individual/app/"
|
||||
"xkbprint-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32 "1yi3232g25hhp241irncd8znv3090k2gm0yjcdnz08h89y1zwn2v"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libx11" ,libx11)
|
||||
("libxkbfile" ,libxkbfile)
|
||||
("xorgproto" ,xorgproto)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "https://www.x.org/wiki/")
|
||||
(synopsis "Visualise an XKB keyboard layout description")
|
||||
(description
|
||||
"The @command{xkbprint} utility visualises (``prints'') an XKB keyboard
|
||||
description as printable or encapsulated PostScript. It accepts any compiled
|
||||
keymap (@file{.xkm}) file that includes a geometry description, or can obtain
|
||||
one from a running X server.")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public xkbutils
|
||||
(package
|
||||
|
|
Reference in a new issue