2015-02-06 06:53:32 +01:00
|
|
|
{ enableX11 ? true
|
2015-09-15 11:26:18 +02:00
|
|
|
, stdenv, fetchurl, pkgconfig, xorg, xorgserver, python3, dbus_libs, frame, grail }:
|
2015-02-06 06:53:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "geis-${version}";
|
|
|
|
version = "2.2.16";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://launchpad.net/geis/trunk/${version}/+download/${name}.tar.xz";
|
|
|
|
sha256 = "40a694092c79f325a2fbf8a9f301177bc91c364f4e637c2aa8963ad2a5aabbcf";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig python3 dbus_libs frame grail ]
|
2015-09-15 11:26:18 +02:00
|
|
|
++ stdenv.lib.optional enableX11 [xorg.libX11 xorg.libXtst xorg.libXext xorg.libXi xorg.xorgserver];
|
2015-02-06 06:53:32 +01:00
|
|
|
|
|
|
|
configureFlags = stdenv.lib.optional enableX11"--enable-x11";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://launchpad.net/geis";
|
2015-04-28 10:54:58 +02:00
|
|
|
description = "A library for applications and toolkit programmers which provides a consistent platform independent interface for any system-wide input gesture recognition mechanism";
|
2015-02-06 06:53:32 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
2015-04-28 10:54:58 +02:00
|
|
|
}
|