mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
88c9f8b574
This seems to have been confusing people, using both xlibs and xorg, etc. - Avoided renaming local (and different) xlibs binding in gcc*. - Fixed cases where both xorg and xlibs were used. Hopefully everything still works as before.
24 lines
932 B
Nix
24 lines
932 B
Nix
{ enableX11 ? true
|
|
, stdenv, fetchurl, pkgconfig, xorg, 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 [xorg.libX11 xorg.libXtst xorg.libXext xorg.libXi xorg.xorgserver];
|
|
|
|
configureFlags = stdenv.lib.optional enableX11"--enable-x11";
|
|
|
|
meta = {
|
|
homepage = "https://launchpad.net/geis";
|
|
description = "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;
|
|
};
|
|
}
|