3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/git-and-tools/git-cola/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
861 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages, gettext, git, qt5 }:
2015-03-08 00:39:29 +00:00
2016-10-17 21:10:44 +01:00
let
inherit (python3Packages) buildPythonApplication pyqt5 sip_4 pyinotify;
2016-10-17 21:10:44 +01:00
in buildPythonApplication rec {
pname = "git-cola";
2022-01-21 07:32:03 +00:00
version = "3.12.0";
2015-03-08 00:39:29 +00:00
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
2022-01-21 07:32:03 +00:00
sha256 = "1f8jpfa916nszj431cmp41bxj2m76k2n8qnscqgxrc0k3pnnp3wc";
2015-03-08 00:39:29 +00:00
};
buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt5 sip_4 pyinotify ];
2019-07-25 13:55:57 +01:00
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
2015-03-08 00:39:29 +00:00
2016-10-17 21:10:44 +01:00
doCheck = false;
2021-07-12 22:10:48 +01:00
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
2019-07-25 13:55:57 +01:00
'';
meta = with lib; {
homepage = "https://github.com/git-cola/git-cola";
2015-03-08 00:39:29 +00:00
description = "A sleek and powerful Git GUI";
license = licenses.gpl2;
platforms = platforms.linux;
2015-03-08 00:39:29 +00:00
maintainers = [ maintainers.bobvanderlinden ];
};
}