3
0
Fork 0
forked from mirrors/nixpkgs

terminator: clean up

This commit is contained in:
Jan Tojnar 2018-04-15 14:17:05 +02:00
parent 8416cd0326
commit fdc21ac57a
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 7 additions and 13 deletions

View file

@ -1,8 +1,8 @@
{ stdenv, fetchurl, pythonPackages, keybinder, vte, gettext, intltool, file, gtk3, gobjectIntrospection, cairo
, wrapGAppsHook, gnome3
{ stdenv, fetchurl, python2, keybinder3, intltool, file, gtk3, gobjectIntrospection
, libnotify, wrapGAppsHook, gnome3
}:
pythonPackages.buildPythonApplication rec {
python2.pkgs.buildPythonApplication rec {
name = "terminator-${version}";
version = "1.91";
@ -11,13 +11,9 @@ pythonPackages.buildPythonApplication rec {
sha256 = "95f76e3c0253956d19ceab2f8da709a496f1b9cf9b1c5b8d3cd0b6da3cc7be69";
};
nativeBuildInputs = [ file intltool wrapGAppsHook ];
buildInputs = [ gtk3 gnome3.vte gobjectIntrospection cairo ];
pythonPath = with pythonPackages; [
pygobject3 vte keybinder notify gettext psutil
pycairo
];
nativeBuildInputs = [ file intltool wrapGAppsHook gobjectIntrospection ];
buildInputs = [ gtk3 gnome3.vte libnotify keybinder3 ];
propagatedBuildInputs = with python2.pkgs; [ pygobject3 psutil pycairo ];
postPatch = ''
patchShebangs .

View file

@ -17957,9 +17957,7 @@ with pkgs;
terminal-notifier = callPackage ../applications/misc/terminal-notifier {};
terminator = callPackage ../applications/misc/terminator {
vte = gnome2.vte.override { pythonSupport = true; };
};
terminator = callPackage ../applications/misc/terminator { };
terminus = callPackage ../applications/misc/terminus { inherit (gnome2) GConf; };