2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages, gettext, git }:
|
2015-03-07 16:39:29 -08:00
|
|
|
|
2016-10-17 13:10:44 -07:00
|
|
|
let
|
2018-07-20 12:36:12 -07:00
|
|
|
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
|
2016-10-17 13:10:44 -07:00
|
|
|
in buildPythonApplication rec {
|
2015-03-07 16:39:29 -08:00
|
|
|
name = "git-cola-${version}";
|
2018-08-30 18:28:14 -07:00
|
|
|
version = "3.2";
|
2015-03-07 16:39:29 -08:00
|
|
|
|
2017-04-01 19:11:56 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "git-cola";
|
|
|
|
repo = "git-cola";
|
|
|
|
rev = "v${version}";
|
2018-08-30 18:28:14 -07:00
|
|
|
sha256 = "1ivaqhvdbmlp0lmrwb2pv3kjqlcpqbxbinbvjjn3g81r4avjs7yy";
|
2015-03-07 16:39:29 -08:00
|
|
|
};
|
|
|
|
|
2017-04-01 19:11:56 -07:00
|
|
|
buildInputs = [ git gettext ];
|
2018-05-11 09:31:49 -07:00
|
|
|
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
|
2015-03-07 16:39:29 -08:00
|
|
|
|
2016-10-17 13:10:44 -07:00
|
|
|
doCheck = false;
|
|
|
|
|
2015-03-07 16:39:29 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/git-cola/git-cola;
|
|
|
|
description = "A sleek and powerful Git GUI";
|
|
|
|
license = licenses.gpl2;
|
2015-05-08 04:41:02 -07:00
|
|
|
platforms = platforms.linux;
|
2015-03-07 16:39:29 -08:00
|
|
|
maintainers = [ maintainers.bobvanderlinden ];
|
|
|
|
};
|
|
|
|
}
|