summary refs log tree commit diff
path: root/pkgs/development/libraries/libevdev
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-10-19 19:08:42 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-10-19 20:11:18 +0200
commit1fca03afab0a61cf4c69be854b716250caaf5c47 (patch)
tree33b35caea06f135e9f9f205b64946da9ecbd0086 /pkgs/development/libraries/libevdev
parent239d6c6ea5015aeab3a5be61240debcc17a54808 (diff)
downloadnixlib-1fca03afab0a61cf4c69be854b716250caaf5c47.tar
nixlib-1fca03afab0a61cf4c69be854b716250caaf5c47.tar.gz
nixlib-1fca03afab0a61cf4c69be854b716250caaf5c47.tar.bz2
nixlib-1fca03afab0a61cf4c69be854b716250caaf5c47.tar.lz
nixlib-1fca03afab0a61cf4c69be854b716250caaf5c47.tar.xz
nixlib-1fca03afab0a61cf4c69be854b716250caaf5c47.tar.zst
nixlib-1fca03afab0a61cf4c69be854b716250caaf5c47.zip
libevdev: small update
Diffstat (limited to 'pkgs/development/libraries/libevdev')
-rw-r--r--pkgs/development/libraries/libevdev/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libevdev/default.nix b/pkgs/development/libraries/libevdev/default.nix
index 981dcd13a626..5dac8f888959 100644
--- a/pkgs/development/libraries/libevdev/default.nix
+++ b/pkgs/development/libraries/libevdev/default.nix
@@ -1,18 +1,18 @@
 { stdenv, fetchurl, python }:
 
 stdenv.mkDerivation rec {
-  name = "libevdev-1.2.1";
+  name = "libevdev-1.3";
 
   src = fetchurl {
     url = "http://www.freedesktop.org/software/libevdev/${name}.tar.xz";
-    sha256 = "0f0yvfg9bwl5xgpcz4kj37l5awcd4l9c78ghxiq3w32gwaz25ibw";
+    sha256 = "0iil4pnla0kjdx52ay7igq65sx32sjbzn1wx9q3v74m5g7712m16";
   };
 
   buildInputs = [ python ];
 
   meta = with stdenv.lib; {
     description = "Wrapper library for evdev devices";
-    homepage = http://www.freedesktop.org/software/libevdev/doc/latest/index.html; 
+    homepage = http://www.freedesktop.org/software/libevdev/doc/latest/index.html;
     license = licenses.mit;
     platforms = platforms.linux;
     maintainers = [ maintainers.amorsillo ];