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

21 lines
654 B
Nix
Raw Normal View History

2014-10-17 23:26:05 +02:00
{ stdenv, fetchurl, pkgconfig, mtdev, udev, libevdev }:
stdenv.mkDerivation rec {
2014-12-17 00:52:14 +01:00
name = "libinput-0.7.0";
2014-10-17 23:26:05 +02:00
src = fetchurl {
url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz";
2014-12-17 00:52:14 +01:00
sha256 = "17jps5iz8kvhbgbd0h436grzb6fbjwf9k4qjcja96jjyzrd4i7qj";
2014-10-17 23:26:05 +02:00
};
buildInputs = [ pkgconfig mtdev udev libevdev ];
meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/libinput;
description = "handles input devices in Wayland compositors and to provide a generic X.Org input driver";
platforms = platforms.unix;
license = licenses.mit;
maintainers = with maintainers; [ wkennington ];
};
}