nixpkgs-suyu/pkgs/applications/version-management/git-and-tools/git-cola/default.nix

37 lines
880 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3Packages, gettext, git, qt5 }:
2015-03-08 01:39:29 +01:00
2016-10-17 22:10:44 +02:00
let
inherit (python3Packages) buildPythonApplication pyqt5 sip pyinotify;
2016-10-17 22:10:44 +02:00
in buildPythonApplication rec {
pname = "git-cola";
2020-11-15 06:44:05 +01:00
version = "3.8";
2015-03-08 01:39:29 +01:00
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
2020-11-15 06:44:05 +01:00
sha256 = "1qxv2k8lxcxpqx46ka7f042xk90xns5w9lc4009cxmsqvcdba03a";
2015-03-08 01:39:29 +01:00
};
buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
2019-07-25 14:55:57 +02:00
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
2015-03-08 01:39:29 +01:00
2016-10-17 22:10:44 +02:00
doCheck = false;
2019-07-25 14:55:57 +02:00
postFixup = ''
2019-09-09 09:45:13 +02:00
wrapQtApp $out/bin/git-cola
wrapQtApp $out/bin/git-dag
2019-07-25 14:55:57 +02:00
'';
meta = with lib; {
homepage = "https://github.com/git-cola/git-cola";
2015-03-08 01:39:29 +01:00
description = "A sleek and powerful Git GUI";
license = licenses.gpl2;
platforms = platforms.linux;
2015-03-08 01:39:29 +01:00
maintainers = [ maintainers.bobvanderlinden ];
};
}