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

29 lines
773 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pythonPackages, makeWrapper, gettext, git }:
2015-03-08 01:39:29 +01:00
2016-10-17 22:10:44 +02:00
let
inherit (pythonPackages) buildPythonApplication pyqt4 sip pyinotify python mock;
in buildPythonApplication rec {
2015-03-08 01:39:29 +01:00
name = "git-cola-${version}";
2017-12-27 22:59:40 +01:00
version = "3.0";
2015-03-08 01:39:29 +01:00
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
2017-12-27 22:59:40 +01:00
sha256 = "0jc360agrlhp1w9i725ffksvc6v95jnzzppjvza7ssip65gplrkx";
2015-03-08 01:39:29 +01:00
};
buildInputs = [ git gettext ];
2016-10-17 22:10:44 +02:00
propagatedBuildInputs = [ pyqt4 sip pyinotify ];
2015-03-08 01:39:29 +01:00
2016-10-17 22:10:44 +02:00
doCheck = false;
2015-03-08 01:39:29 +01: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 01:39:29 +01:00
maintainers = [ maintainers.bobvanderlinden ];
};
}