libinput: refactor & add optional dependencies
This commit is contained in:
parent
7699f34c52
commit
ac2ed3818c
@ -1,5 +1,19 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, mtdev, udev, libevdev }:
|
{ stdenv, fetchurl, pkgconfig
|
||||||
|
, libevdev, mtdev, udev
|
||||||
|
, documentationSupport ? true, doxygen ? null, graphviz ? null # Documentation
|
||||||
|
, eventGUISupport ? false, cairo ? null, glib ? null, gtk3 ? null # GUI event viewer support
|
||||||
|
, testsSupport ? false, check ? null, valgrind ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert documentationSupport -> doxygen != null && graphviz != null;
|
||||||
|
assert eventGUISupport -> cairo != null && glib != null && gtk3 != null;
|
||||||
|
assert testsSupport -> check != null && valgrind != null;
|
||||||
|
|
||||||
|
let
|
||||||
|
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
|
||||||
|
in
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libinput-0.10.0";
|
name = "libinput-0.10.0";
|
||||||
|
|
||||||
@ -8,13 +22,24 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0h8lbhhxb5020bhdblxp1pkapy4bchjj3l44fxabz9pi1zw03q2c";
|
sha256 = "0h8lbhhxb5020bhdblxp1pkapy4bchjj3l44fxabz9pi1zw03q2c";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig mtdev udev libevdev ];
|
configureFlags = [
|
||||||
|
(mkFlag documentationSupport "documentation")
|
||||||
|
(mkFlag eventGUISupport "event-gui")
|
||||||
|
(mkFlag testsSupport "tests")
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
homepage = http://www.freedesktop.org/wiki/Software/libinput;
|
|
||||||
description = "handles input devices in Wayland compositors and to provide a generic X.Org input driver";
|
buildInputs = [ libevdev mtdev udev ]
|
||||||
platforms = platforms.unix;
|
++ optionals eventGUISupport [ cairo glib gtk3 ]
|
||||||
license = licenses.mit;
|
++ optionals documentationSupport [ doxygen graphviz ]
|
||||||
maintainers = with maintainers; [ wkennington ];
|
++ optionals testsSupport [ check valgrind ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver";
|
||||||
|
homepage = http://www.freedesktop.org/wiki/Software/libinput;
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ codyopel wkennington ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -6352,7 +6352,9 @@ let
|
|||||||
inherit (gnome) gtkdoc;
|
inherit (gnome) gtkdoc;
|
||||||
};
|
};
|
||||||
|
|
||||||
libinput = callPackage ../development/libraries/libinput { };
|
libinput = callPackage ../development/libraries/libinput {
|
||||||
|
graphviz = graphviz-nox;
|
||||||
|
};
|
||||||
|
|
||||||
libiptcdata = callPackage ../development/libraries/libiptcdata { };
|
libiptcdata = callPackage ../development/libraries/libiptcdata { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user