keybinder: remove GTK3 dependency
kyebinder never supported GTK 3, only keybinder-3.0 (keybinder3 package) does.
This effectively reverts c0c835dcce
This commit is contained in:
parent
6820e2f0dd
commit
10dd73b5e2
|
@ -1,9 +1,9 @@
|
||||||
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, gnome3
|
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, gnome3
|
||||||
, gtk-doc, gtk2, python2Packages, lua, libX11, libXext, libXrender, gobjectIntrospection
|
, gtk-doc, gtk2, python2Packages, lua, gobjectIntrospection
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (python2Packages) python pygobject3 pygtk;
|
inherit (python2Packages) python pygtk;
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "keybinder-${version}";
|
name = "keybinder-${version}";
|
||||||
version = "0.3.0";
|
version = "0.3.0";
|
||||||
|
@ -16,8 +16,8 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
autoconf automake libtool gnome3.gnome-common gtk-doc gnome3.gtk3
|
autoconf automake libtool gnome3.gnome-common gtk-doc gtk2
|
||||||
python pygobject3 pygtk lua libX11 libXext libXrender gobjectIntrospection gtk2
|
python pygtk lua gobjectIntrospection
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
Loading…
Reference in New Issue