mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add libevdev.
* gnu/packages/xorg.scm (libevdev): New variable.
This commit is contained in:
parent
66e0147e86
commit
ab9d06be83
1 changed files with 26 additions and 0 deletions
|
@ -2159,6 +2159,32 @@ (define-public xextproto
|
|||
(license license:x11)))
|
||||
|
||||
|
||||
(define-public libevdev
|
||||
(package
|
||||
(name "libevdev")
|
||||
(version "1.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.freedesktop.org/software/" name "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0iil4pnla0kjdx52ay7igq65sx32sjbzn1wx9q3v74m5g7712m16"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs `(("python" ,python)))
|
||||
(home-page "http://www.freedesktop.org/wiki/Software/libevdev/")
|
||||
(synopsis "Wrapper library for evdev devices")
|
||||
(description
|
||||
"libevdev is a wrapper library for evdev devices. it moves the common
|
||||
tasks when dealing with evdev devices into a library and provides a library
|
||||
interface to the callers, thus avoiding erroneous ioctls, etc.
|
||||
|
||||
The eventual goal is that libevdev wraps all ioctls available to evdev
|
||||
devices, thus making direct access unnecessary.")
|
||||
(license license:x11-style)))
|
||||
|
||||
|
||||
(define-public xf86-input-evdev
|
||||
(package
|
||||
(name "xf86-input-evdev")
|
||||
|
|
Loading…
Reference in a new issue