2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages, gettext, git }:
|
2015-03-08 01:39:29 +01:00
|
|
|
|
2016-10-17 22:10:44 +02:00
|
|
|
let
|
2018-07-20 21:36:12 +02:00
|
|
|
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
|
2016-10-17 22:10:44 +02:00
|
|
|
in buildPythonApplication rec {
|
2015-03-08 01:39:29 +01:00
|
|
|
name = "git-cola-${version}";
|
2018-05-01 00:59:34 +02:00
|
|
|
version = "3.1";
|
2015-03-08 01:39:29 +01:00
|
|
|
|
2017-04-02 04:11:56 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "git-cola";
|
|
|
|
repo = "git-cola";
|
|
|
|
rev = "v${version}";
|
2018-05-01 00:59:34 +02:00
|
|
|
sha256 = "1xzm8694zndl2pb4nanzhldn7wrsc1gjd5ldjncidw1msp9fczq1";
|
2015-03-08 01:39:29 +01:00
|
|
|
};
|
|
|
|
|
2017-04-02 04:11:56 +02:00
|
|
|
buildInputs = [ git gettext ];
|
2018-05-11 18:31:49 +02:00
|
|
|
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
|
2015-03-08 01:39:29 +01:00
|
|
|
|
2016-10-17 22:10:44 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2015-03-08 01:39:29 +01: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 13:41:02 +02:00
|
|
|
platforms = platforms.linux;
|
2015-03-08 01:39:29 +01:00
|
|
|
maintainers = [ maintainers.bobvanderlinden ];
|
|
|
|
};
|
|
|
|
}
|