gnu: xkbcomp-intermediate: Export variable.

* gnu/packages/xorg.scm (xkbcomp-intermediate): Make public.
[properties]: New field.
(xkbcomp)[properties]: New field.
This commit is contained in:
Ludovic Courtès 2021-09-11 17:08:49 +02:00
parent 7be2b83102
commit c1d7eac346
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -3931,7 +3931,7 @@ (define-public xinput
(license license:x11)))
(define xkbcomp-intermediate ;used as input for xkeyboard-config
(define-public xkbcomp-intermediate ;used as input for xkeyboard-config
(package
(name "xkbcomp-intermediate")
(version "1.4.5")
@ -3964,11 +3964,16 @@ (define xkbcomp-intermediate ;used as input for xkeyboard-config
and to more closely track the logical and physical state of the
keyboard. It also includes a number of keyboard controls designed to
make keyboards more accessible to people with physical impairments.")
(license license:x11)))
(license license:x11)
;; The only reason this package is public is to make sure it's built and
;; published by the continuous integration tool.
(properties '((hidden? . #t)))))
(define-public xkbcomp ; using xkeyboard-config as input
(package (inherit xkbcomp-intermediate)
(name "xkbcomp")
(properties '())
(inputs
`(,@(package-inputs xkbcomp-intermediate)
("xkeyboard-config" ,xkeyboard-config)))