mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add xf86-input-libinput.
* gnu/packages/xorg.scm (xf86-input-libinput): New variable.
This commit is contained in:
parent
0dec8f8c13
commit
e3cadebaf0
1 changed files with 31 additions and 1 deletions
|
@ -45,7 +45,8 @@ (define-module (gnu packages xorg)
|
|||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages xdisorg))
|
||||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (gnu packages freedesktop))
|
||||
|
||||
|
||||
|
||||
|
@ -2220,6 +2221,35 @@ (define-public xf86-input-evdev
|
|||
(description "X.org provides an implementation of the X Window System")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public xf86-input-libinput
|
||||
(package
|
||||
(name "xf86-input-libinput")
|
||||
(version "0.8.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://xorg/individual/driver/"
|
||||
name "-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"0fm4vrkw7azipbnwvc2l18g65z77pllsznaajd8q3zpg9ycb0li1"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
(list (string-append "--with-sdkdir="
|
||||
%output "/include/xorg"))))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("libinput" ,libinput)
|
||||
("xorg-server" ,xorg-server)))
|
||||
(home-page "http://www.x.org/wiki/")
|
||||
(synopsis "Xorg input driver")
|
||||
(description
|
||||
"This is an Xorg input driver based on libinput. It therefore supports
|
||||
all input devices that libinput can handle, including most mice, keyboards,
|
||||
tablets and touchscreens.")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public xf86-input-joystick
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue