1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/applications/version-management/git-and-tools/git-cola/default.nix

29 lines
776 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_with_qtwebkit 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.2";
2015-03-08 00:39:29 +00:00
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
sha256 = "1ivaqhvdbmlp0lmrwb2pv3kjqlcpqbxbinbvjjn3g81r4avjs7yy";
2015-03-08 00:39:29 +00:00
};
buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt5_with_qtwebkit 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 ];
};
}