guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

53/116: gnu: Add libevdev.


From: Mark H. Weaver
Subject: 53/116: gnu: Add libevdev.
Date: Sat, 20 Dec 2014 04:38:37 +0000

mhw pushed a commit to branch xorg-updates
in repository guix.

commit ab9d06be83a535f42b76861bd9914cd088c00907
Author: Mark H Weaver <address@hidden>
Date:   Fri Dec 19 14:58:52 2014 -0500

    gnu: Add libevdev.
    
    * gnu/packages/xorg.scm (libevdev): New variable.
---
 gnu/packages/xorg.scm |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 29af09c..b1d4fb5 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -2159,6 +2159,32 @@ synchronization between the X server and 
direct-rendering clients.")
     (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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]