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

21 lines
560 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
2015-11-11 23:46:39 +00:00
name = "libevdev-1.4.5";
src = fetchurl {
url = "http://www.freedesktop.org/software/libevdev/${name}.tar.xz";
2015-11-11 23:46:39 +00:00
sha256 = "07faqb47c7sjl25rc788cbslyiv5ijky0jc4g6312qz0hv55h779";
};
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 ];
};
}