terminator: 1.0 -> 1.91 (#34218)

* terminator: 1.0 -> 1.91

* terminator: wrapGAppsHook is a native build input
This commit is contained in:
Peter 2018-01-24 13:10:42 +03:00 committed by Jörg Thalheim
parent a75160e25e
commit 01941c5155

View File

@ -1,19 +1,22 @@
{ stdenv, fetchurl, pythonPackages, pango, keybinder, vte, gettext, intltool, file
{ stdenv, fetchurl, pythonPackages, keybinder, vte, gettext, intltool, file, gtk3, gobjectIntrospection, cairo
, wrapGAppsHook, gnome3
}:
pythonPackages.buildPythonApplication rec {
name = "terminator-${version}";
version = "1.0";
version = "1.91";
src = fetchurl {
url = "https://launchpad.net/terminator/trunk/${version}/+download/${name}.tar.gz";
sha256 = "1pfspcxsbax8a835kcld32fax6vcxsn1fmkny9zzvi4icplhkal8";
url = "https://launchpad.net/terminator/gtk3/${version}/+download/${name}.tar.gz";
sha256 = "95f76e3c0253956d19ceab2f8da709a496f1b9cf9b1c5b8d3cd0b6da3cc7be69";
};
nativeBuildInputs = [ file intltool ];
nativeBuildInputs = [ file intltool wrapGAppsHook ];
buildInputs = [ gtk3 gnome3.vte gobjectIntrospection cairo ];
pythonPath = with pythonPackages; [
pygtk pygobject2 vte keybinder notify gettext pango psutil
pygobject3 vte keybinder notify gettext psutil
pycairo
];
postPatch = ''