git-cola: port to qt5

`git-cola` is a simple GUI `git` wrapper based on QT. Since 2.7
(namely 293364b45c)
it supports QT5 which provides a nicer inteface.

See #33248
This commit is contained in:
Maximilian Bosch 2018-05-11 18:31:49 +02:00
parent 716d877d0f
commit 1a69587040
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pythonPackages, makeWrapper, gettext, git }: { stdenv, fetchFromGitHub, pythonPackages, makeWrapper, gettext, git }:
let let
inherit (pythonPackages) buildPythonApplication pyqt4 sip pyinotify python mock; inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify python mock;
in buildPythonApplication rec { in buildPythonApplication rec {
name = "git-cola-${version}"; name = "git-cola-${version}";
version = "3.1"; version = "3.1";
@ -14,7 +14,7 @@ in buildPythonApplication rec {
}; };
buildInputs = [ git gettext ]; buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt4 sip pyinotify ]; propagatedBuildInputs = [ pyqt5 sip pyinotify ];
doCheck = false; doCheck = false;