1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/development/libraries/libevdev/default.nix

21 lines
560 B
Nix
Raw Normal View History

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