gnu: libxkbcommon: Update to 0.9.1.
* gnu/packages/xdisorg.scm (libxkbcommon): Update to 0.9.1. [build-system]: Change to MESON-BUILD-SYSTEM. [inputs]: Add WAYLAND and WAYLAND-PROTOCOLS. [native-inputs]: Add DOXYGEN. [arguments]: Adjust #:configure-flags for Meson.master
parent
049e450162
commit
3a24bf3a2a
|
@ -261,28 +261,31 @@ avoiding password prompts when X11 forwarding has already been setup.")
|
||||||
(define-public libxkbcommon
|
(define-public libxkbcommon
|
||||||
(package
|
(package
|
||||||
(name "libxkbcommon")
|
(name "libxkbcommon")
|
||||||
(version "0.8.4")
|
(version "0.9.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://xkbcommon.org/download/libxkbcommon-"
|
(uri (string-append "https://xkbcommon.org/download/libxkbcommon-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12vc91ydhphd5sddz15560r41l7k0i7mq6nma8kkbzdp6bwwzpb0"))))
|
"1q4v378sr9ad8fy9znl7k8xpf0wch655r9m6z0bcc7sw1azsminl"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("libx11" ,libx11)
|
`(("libx11" ,libx11)
|
||||||
("libxcb" ,libxcb)
|
("libxcb" ,libxcb)
|
||||||
|
("wayland" ,wayland)
|
||||||
|
("wayland-protocols" ,wayland-protocols)
|
||||||
("xkeyboard-config" ,xkeyboard-config)))
|
("xkeyboard-config" ,xkeyboard-config)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("bison" ,bison)
|
`(("bison" ,bison)
|
||||||
|
("doxygen" ,doxygen)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list (string-append "--with-xkb-config-root="
|
(list (string-append "-Dxkb-config-root="
|
||||||
(assoc-ref %build-inputs "xkeyboard-config")
|
(assoc-ref %build-inputs "xkeyboard-config")
|
||||||
"/share/X11/xkb")
|
"/share/X11/xkb")
|
||||||
(string-append "--with-x-locale-root="
|
(string-append "-Dx-locale-root="
|
||||||
(assoc-ref %build-inputs "libx11")
|
(assoc-ref %build-inputs "libx11")
|
||||||
"/share/X11/locale"))))
|
"/share/X11/locale"))))
|
||||||
(home-page "https://xkbcommon.org/")
|
(home-page "https://xkbcommon.org/")
|
||||||
|
|
Reference in New Issue