nixpkgs/pkgs/development/libraries/libevdev/default.nix

21 lines
560 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
2016-04-12 23:20:33 +00:00
name = "libevdev-1.4.6";
src = fetchurl {
url = "http://www.freedesktop.org/software/libevdev/${name}.tar.xz";
2016-04-12 23:20:33 +00:00
sha256 = "1lrja526iyg48yw6i0dxdhyj63q9gwbgvj6xk1hskxzrqyhf2akv";
};
buildInputs = [ python ];
meta = with stdenv.lib; {
description = "Wrapper library for evdev devices";
2014-10-19 17:08:42 +00:00
homepage = http://www.freedesktop.org/software/libevdev/doc/latest/index.html;
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.amorsillo ];
};
}