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:
Bjørn Forsman 2014-02-17 20:39:38 +01:00
parent 1d1667b7b0
commit 0fa9dca362
2 changed files with 7 additions and 2 deletions

View file

@ -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 {
name = "gnome-terminator-${version}";
@ -9,7 +11,9 @@ stdenv.mkDerivation rec {
sha256 = "1xykpx10g2zssx0ss6351ca6vmmma7zwxxhjz0fg28ps4dq88cci";
};
buildInputs = [ python pygtk vte gettext intltool makeWrapper ];
buildInputs = [
python pygtk notify keybinder vte gettext intltool makeWrapper
];
installPhase = ''
python setup.py --without-icon-cache install --prefix="$out"

View file

@ -8109,6 +8109,7 @@ let
gnome_terminator = callPackage ../applications/misc/gnome_terminator {
vte = gnome.vte.override { pythonSupport = true; };
inherit (pythonPackages) notify;
};
googleearth = callPackage_i686 ../applications/misc/googleearth { };