summary refs log tree commit diff
path: root/pkgs/applications/misc/terminator
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-09-06 13:37:39 +0200
committerRobin Gloster <mail@glob.in>2016-12-29 01:42:22 +0100
commit825c0d892a7ad308872371065cdf6209823c712e (patch)
tree521501b3859b17b1b2165767e5d6f05aeeb49625 /pkgs/applications/misc/terminator
parentd8ef63fc73ca169aa6d022c9ed7f10c57a5a5a9a (diff)
downloadnixpkgs-825c0d892a7ad308872371065cdf6209823c712e.tar
nixpkgs-825c0d892a7ad308872371065cdf6209823c712e.tar.gz
nixpkgs-825c0d892a7ad308872371065cdf6209823c712e.tar.bz2
nixpkgs-825c0d892a7ad308872371065cdf6209823c712e.tar.lz
nixpkgs-825c0d892a7ad308872371065cdf6209823c712e.tar.xz
nixpkgs-825c0d892a7ad308872371065cdf6209823c712e.tar.zst
nixpkgs-825c0d892a7ad308872371065cdf6209823c712e.zip
terminator: fix build and use buildPythonApplication
Diffstat (limited to 'pkgs/applications/misc/terminator')
-rw-r--r--pkgs/applications/misc/terminator/default.nix25
1 files changed, 17 insertions, 8 deletions
diff --git a/pkgs/applications/misc/terminator/default.nix b/pkgs/applications/misc/terminator/default.nix
index 29befb7f25a..79029eb4268 100644
--- a/pkgs/applications/misc/terminator/default.nix
+++ b/pkgs/applications/misc/terminator/default.nix
@@ -1,19 +1,28 @@
-{ stdenv, fetchurl, pythonPackages, keybinder, vte, gettext, intltool }:
+{ stdenv, fetchurl, python2Packages, pango, keybinder, vte, gettext, intltool, file
+}:
 
-pythonPackages.buildPythonApplication rec {
+python2Packages.buildPythonApplication rec {
   name = "terminator-${version}";
   version = "0.98";
-  
+
   src = fetchurl {
     url = "https://launchpad.net/terminator/trunk/${version}/+download/${name}.tar.gz";
     sha256 = "1h965z06dsfk38byyhnsrscd9r91qm92ggwgjrh7xminzsgqqv8a";
   };
-  
-  propagatedBuildInputs = with pythonPackages; [ pygtk notify keybinder vte gettext intltool ];
 
-  #setupPyBuildFlags = [ "--without-icon-cache" ];
+  nativeBuildInputs = [ file intltool ];
+
+  pythonPath = with python2Packages; [
+    pygtk pygobject2 vte keybinder notify gettext pango
+  ];
+
+  postPatch = ''
+    patchShebangs .
+  '';
 
-  doCheck = false;
+  checkPhase = ''
+    ./run_tests
+  '';
 
   meta = with stdenv.lib; {
     description = "Terminal emulator with support for tiling and tabs";
@@ -25,7 +34,7 @@ pythonPackages.buildPythonApplication rec {
     '';
     homepage = http://gnometerminator.blogspot.no/p/introduction.html;
     license = licenses.gpl2;
-    maintainers = [ maintainers.bjornfor ];
+    maintainers = with maintainers; [ bjornfor globin ];
     platforms = platforms.linux;
   };
 }