Commit 5da27ada authored by Thiago Kenji Okada's avatar Thiago Kenji Okada
Browse files

keybinder: disable python bindings

parent ac333319
Loading
Loading
Loading
Loading
+7 −8
Original line number Diff line number Diff line
{ 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;