Added Touchegg and 3 depdenencies. Touchegg is a daemon for X that adds gesture based navigation for touch based surfaces.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{ enableX11 ? true
|
||||
, stdenv, fetchurl, pkgconfig, xlibs, xorgserver, python3, dbus_libs, frame, grail }:
|
||||
|
||||
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 ]
|
||||
++ stdenv.lib.optional enableX11 [xlibs.libX11 xlibs.libXtst xlibs.libXext xlibs.libXi xlibs.xorgserver];
|
||||
|
||||
configureFlags = stdenv.lib.optional enableX11"--enable-x11";
|
||||
|
||||
meta = {
|
||||
homepage = "https://launchpad.net/geis";
|
||||
description = "GEIS is a library for applications and toolkit programmers which provides a consistent platform independent interface for any system-wide input gesture recognition mechanism.";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user