nixpkgs/pkgs/development/libraries/geis/default.nix
Joachim Fasting 3f5d7c7e04
geis: refactor & fix build
- Pass -Wno-error=pedantic to work around ISO C violations
- Build with X11 unconditionally (also rely on pkgconfig for
  detection, --enable-x11 does not work)
- Build against evemu
2016-07-05 00:54:12 +02:00

38 lines
780 B
Nix

{ stdenv, fetchurl
, pkgconfig
, python3
, dbus_libs
, evemu
, frame
, grail
, libX11
, libXext
, libXi
, libXtst
, xorgserver
}:
with stdenv.lib;
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";
};
NIX_CFLAGS_COMPILE = "-Wno-error=pedantic";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ python3 dbus_libs evemu frame grail libX11 libXext libXi libXtst xorgserver ];
meta = {
description = "A library for input gesture recognition";
homepage = https://launchpad.net/geis;
license = licenses.gpl2;
platforms = platforms.linux;
};
}