about summary refs log tree commit diff
path: root/pkgs/applications/misc/terminator
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-09-26 09:47:39 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-09-26 11:10:50 +0200
commitdebfe4f1246365e02905ca564eaab941c8b56752 (patch)
treea6315808086abd77322c300f8a709bea06457b65 /pkgs/applications/misc/terminator
parent93eb9c6428653bed556eaddd78fcccaef2ee48c8 (diff)
terminator: do not use top-level python packages
and refactor to use buildPythonApplication. cc @bjornfor
Diffstat (limited to 'pkgs/applications/misc/terminator')
-rw-r--r--pkgs/applications/misc/terminator/default.nix19
1 files changed, 5 insertions, 14 deletions
diff --git a/pkgs/applications/misc/terminator/default.nix b/pkgs/applications/misc/terminator/default.nix
index 7ca5f962403cc..29befb7f25a8c 100644
--- a/pkgs/applications/misc/terminator/default.nix
+++ b/pkgs/applications/misc/terminator/default.nix
@@ -1,8 +1,6 @@
-{ stdenv, fetchurl, python, pygtk, notify, keybinder, vte, gettext, intltool
-, makeWrapper
-}:
+{ stdenv, fetchurl, pythonPackages, keybinder, vte, gettext, intltool }:
 
-stdenv.mkDerivation rec {
+pythonPackages.buildPythonApplication rec {
   name = "terminator-${version}";
   version = "0.98";
   
@@ -11,18 +9,11 @@ stdenv.mkDerivation rec {
     sha256 = "1h965z06dsfk38byyhnsrscd9r91qm92ggwgjrh7xminzsgqqv8a";
   };
   
-  buildInputs = [
-    python pygtk notify keybinder vte gettext intltool makeWrapper
-  ];
+  propagatedBuildInputs = with pythonPackages; [ pygtk notify keybinder vte gettext intltool ];
 
-  installPhase = ''
-    python setup.py --without-icon-cache install --prefix="$out"
+  #setupPyBuildFlags = [ "--without-icon-cache" ];
 
-    for file in "$out"/bin/*; do
-        wrapProgram "$file" \
-            --prefix PYTHONPATH : "$(toPythonPath $out):$PYTHONPATH"
-    done
-  '';
+  doCheck = false;
 
   meta = with stdenv.lib; {
     description = "Terminal emulator with support for tiling and tabs";