2019-09-26 18:37:03 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages, gettext, git, qt5 }:
|
2015-03-08 00:39:29 +00:00
|
|
|
|
2016-10-17 20:10:44 +00:00
|
|
|
let
|
2019-09-26 18:37:03 +00:00
|
|
|
inherit (python3Packages) buildPythonApplication pyqt5 sip pyinotify;
|
2018-12-30 15:21:38 +00:00
|
|
|
|
2016-10-17 20:10:44 +00:00
|
|
|
in buildPythonApplication rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "git-cola";
|
2019-09-26 18:03:21 +00:00
|
|
|
version = "3.5";
|
2015-03-08 00:39:29 +00:00
|
|
|
|
2017-04-02 02:11:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "git-cola";
|
|
|
|
repo = "git-cola";
|
|
|
|
rev = "v${version}";
|
2019-09-26 18:03:21 +00:00
|
|
|
sha256 = "09b60jbpdr4czx7h4vqahqmmi7m9vn77jlkpjfhys7crrdnxjp9i";
|
2015-03-08 00:39:29 +00:00
|
|
|
};
|
|
|
|
|
2017-04-02 02:11:56 +00:00
|
|
|
buildInputs = [ git gettext ];
|
2018-12-30 15:21:38 +00:00
|
|
|
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
|
2019-07-25 12:55:57 +00:00
|
|
|
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
|
2015-03-08 00:39:29 +00:00
|
|
|
|
2016-10-17 20:10:44 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-07-25 12:55:57 +00:00
|
|
|
postFixup = ''
|
2019-09-09 07:45:13 +00:00
|
|
|
wrapQtApp $out/bin/git-cola
|
|
|
|
wrapQtApp $out/bin/git-dag
|
2019-07-25 12:55:57 +00:00
|
|
|
|
|
|
|
'';
|
|
|
|
|
2015-03-08 00:39:29 +00: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 11:41:02 +00:00
|
|
|
platforms = platforms.linux;
|
2015-03-08 00:39:29 +00:00
|
|
|
maintainers = [ maintainers.bobvanderlinden ];
|
|
|
|
};
|
|
|
|
}
|