libinput: Add derivation
This commit is contained in:
parent
2e7785ec04
commit
c79eac4c79
2 changed files with 22 additions and 0 deletions
20
pkgs/development/libraries/libinput/default.nix
Normal file
20
pkgs/development/libraries/libinput/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, pkgconfig, mtdev, udev, libevdev }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libinput-0.6.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz";
|
||||
sha256 = "1g5za42f60vw87982vjh0n6r78qajj34l323p7623fbw3rvmbd9h";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -5727,6 +5727,8 @@ let
|
|||
inherit (gnome) gtkdoc;
|
||||
};
|
||||
|
||||
libinput = callPackage ../development/libraries/libinput { };
|
||||
|
||||
libiptcdata = callPackage ../development/libraries/libiptcdata { };
|
||||
|
||||
libjpeg_original = callPackage ../development/libraries/libjpeg { };
|
||||
|
|
Loading…
Reference in a new issue