Merge pull request #6705 from bobvanderlinden/gitcola

git-cola: add package
This commit is contained in:
lethalman 2015-03-11 15:35:37 +01:00
commit 9b699bc9a9
3 changed files with 39 additions and 0 deletions

View file

@ -100,4 +100,6 @@ rec {
gitRemoteGcrypt = callPackage ./git-remote-gcrypt { };
git-extras = callPackage ./git-extras { };
git-cola = callPackage ./git-cola { };
}

View file

@ -0,0 +1,36 @@
{ stdenv, fetchurl, python, pythonPackages, makeWrapper, gettext }:
pythonPackages.buildPythonPackage rec {
name = "git-cola-${version}";
version = "2.1.1";
src = fetchurl {
url = "https://github.com/git-cola/git-cola/archive/v${version}.tar.gz";
sha256 = "0fpi5nvhyqkx67ak5pfcpgxbc3m19dqlvdh2c9igv2j0vp5rzkj1";
};
buildInputs = [ makeWrapper gettext ];
propagatedBuildInputs = with pythonPackages; [ pyqt4 sip pyinotify ];
# HACK: wrapPythonPrograms adds 'import sys; sys.argv[0] = "git-cola"', but
# "import __future__" must be placed above that. This removes the argv[0] line.
postFixup = ''
wrapPythonPrograms
sed -i "$out/bin/.git-dag-wrapped" -e '{
/import sys; sys.argv/d
}'
sed -i "$out/bin/.git-cola-wrapped" -e '{
/import sys; sys.argv/d
}'
'';
meta = with stdenv.lib; {
homepage = https://github.com/git-cola/git-cola;
description = "A sleek and powerful Git GUI";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.bobvanderlinden ];
};
}

View file

@ -10421,6 +10421,7 @@ let
pythonSupport = false;
};
gitSVN = gitAndTools.gitSVN;
git-cola = gitAndTools.git-cola;
gitRepo = callPackage ../applications/version-management/git-repo {
python = python27;