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

30 lines
749 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pythonPackages, gettext, git }:
2015-03-07 16:39:29 -08:00
2016-10-17 13:10:44 -07:00
let
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}";
2019-02-17 04:52:23 -08:00
version = "3.3";
2015-03-07 16:39:29 -08:00
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
2019-02-17 04:52:23 -08:00
sha256 = "0gfbzcmaqg6hdy2cfpshgcwh8zgj1ia1vd95i5xdrsvksgb8fq2j";
2015-03-07 16:39:29 -08:00
};
buildInputs = [ git gettext ];
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;
platforms = platforms.linux;
2015-03-07 16:39:29 -08:00
maintainers = [ maintainers.bobvanderlinden ];
};
}