gnome-terminator: add missing dependencies (for extra features)
Add 'keybinder' and 'python-notify' as dependencies. Fixes this: $ terminator [...] Warning: python-keybinder is not installed. This means the hide_window shortcut will be unavailable [...] ActivityWatch plugin unavailable: please install python-notify
This commit is contained in:
parent
1d1667b7b0
commit
0fa9dca362
|
@ -1,4 +1,6 @@
|
||||||
{ stdenv, fetchurl, python, pygtk, vte, gettext, intltool, makeWrapper }:
|
{ stdenv, fetchurl, python, pygtk, notify, keybinder, vte, gettext, intltool
|
||||||
|
, makeWrapper
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnome-terminator-${version}";
|
name = "gnome-terminator-${version}";
|
||||||
|
@ -9,7 +11,9 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1xykpx10g2zssx0ss6351ca6vmmma7zwxxhjz0fg28ps4dq88cci";
|
sha256 = "1xykpx10g2zssx0ss6351ca6vmmma7zwxxhjz0fg28ps4dq88cci";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ python pygtk vte gettext intltool makeWrapper ];
|
buildInputs = [
|
||||||
|
python pygtk notify keybinder vte gettext intltool makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
python setup.py --without-icon-cache install --prefix="$out"
|
python setup.py --without-icon-cache install --prefix="$out"
|
||||||
|
|
|
@ -8109,6 +8109,7 @@ let
|
||||||
|
|
||||||
gnome_terminator = callPackage ../applications/misc/gnome_terminator {
|
gnome_terminator = callPackage ../applications/misc/gnome_terminator {
|
||||||
vte = gnome.vte.override { pythonSupport = true; };
|
vte = gnome.vte.override { pythonSupport = true; };
|
||||||
|
inherit (pythonPackages) notify;
|
||||||
};
|
};
|
||||||
|
|
||||||
googleearth = callPackage_i686 ../applications/misc/googleearth { };
|
googleearth = callPackage_i686 ../applications/misc/googleearth { };
|
||||||
|
|
Loading…
Reference in New Issue