36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, python, pythonPackages, makeWrapper, gettext }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "git-cola-${version}";
|
|
version = "2.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/git-cola/git-cola/archive/v${version}.tar.gz";
|
|
sha256 = "0ybjmlwm1plnvqi20y91ci7sgldzwlwn86vyyn9a157h7lf4ngb8";
|
|
};
|
|
|
|
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.linux;
|
|
maintainers = [ maintainers.bobvanderlinden ];
|
|
};
|
|
}
|