3
0
Fork 0
forked from mirrors/nixpkgs
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-08 00:39:29 +00:00
2016-10-17 21:10:44 +01:00
let
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
2016-10-17 21:10:44 +01:00
in buildPythonApplication rec {
2015-03-08 00:39:29 +00:00
name = "git-cola-${version}";
version = "3.4";
2015-03-08 00:39:29 +00:00
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
sha256 = "0754d56dprhb1nhb8fwp4my5pyqcgarwzba1l6zx7il87d7vyi5m";
2015-03-08 00:39:29 +00:00
};
buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
2015-03-08 00:39:29 +00:00
2016-10-17 21:10:44 +01:00
doCheck = false;
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;
platforms = platforms.linux;
2015-03-08 00:39:29 +00:00
maintainers = [ maintainers.bobvanderlinden ];
};
}