keybinder: disable python bindings

This commit is contained in:
Thiago Kenji Okada 2023-01-05 21:46:04 +00:00
parent ac33331957
commit 5da27ada70

View file

@ -1,10 +1,8 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, gnome
, gtk-doc, gtk2, python2Packages, lua, gobject-introspection
, gtk-doc, gtk2, lua, gobject-introspection
}:
let
inherit (python2Packages) python pygtk;
in stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
pname = "keybinder";
version = "0.3.1";
@ -16,13 +14,16 @@ in stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config autoconf automake ];
buildInputs = [
libtool gnome.gnome-common gtk-doc gtk2
python pygtk lua gobject-introspection
lua gobject-introspection
];
configureFlags = [ "--disable-python" ];
preConfigure = ''
./autogen.sh --prefix="$out"
./autogen.sh --prefix="$out" $configureFlags
'';
meta = with lib; {
@ -36,8 +37,6 @@ in stdenv.mkDerivation rec {
* A C library, ``libkeybinder``
* Gobject-Introspection (gir) generated bindings
* Lua bindings, ``lua-keybinder``
* Python bindings, ``python-keybinder``
* An ``examples`` directory with programs in C, Lua, Python and Vala.
'';
homepage = "https://github.com/engla/keybinder/";
license = licenses.gpl2Plus;