From 3f426f6f55a6a38a920b3c8117044ffb0d9a8c88 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Thu, 29 Dec 2016 01:19:55 +0100 Subject: [PATCH] terminator: 0.98 -> 1.0 --- pkgs/applications/misc/terminator/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/terminator/default.nix b/pkgs/applications/misc/terminator/default.nix index 79029eb4268..3959ad88ece 100644 --- a/pkgs/applications/misc/terminator/default.nix +++ b/pkgs/applications/misc/terminator/default.nix @@ -1,19 +1,19 @@ -{ stdenv, fetchurl, python2Packages, pango, keybinder, vte, gettext, intltool, file +{ stdenv, fetchurl, pythonPackages, pango, keybinder, vte, gettext, intltool, file }: -python2Packages.buildPythonApplication rec { +pythonPackages.buildPythonApplication rec { name = "terminator-${version}"; - version = "0.98"; + version = "1.0"; src = fetchurl { url = "https://launchpad.net/terminator/trunk/${version}/+download/${name}.tar.gz"; - sha256 = "1h965z06dsfk38byyhnsrscd9r91qm92ggwgjrh7xminzsgqqv8a"; + sha256 = "1pfspcxsbax8a835kcld32fax6vcxsn1fmkny9zzvi4icplhkal8"; }; nativeBuildInputs = [ file intltool ]; - pythonPath = with python2Packages; [ - pygtk pygobject2 vte keybinder notify gettext pango + pythonPath = with pythonPackages; [ + pygtk pygobject2 vte keybinder notify gettext pango psutil ]; postPatch = ''