32 lines
994 B
Nix
32 lines
994 B
Nix
{lib, fetchurl, mercurial, python2Packages}:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
name = "tortoisehg-${version}";
|
|
version = "3.9.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz";
|
|
sha256 = "17wcsf91z7dnb7c8vyagasj5vvmas6ms5lx1ny4pnm94qzslkfh2";
|
|
};
|
|
|
|
pythonPath = with python2Packages; [ pyqt4 mercurial qscintilla iniparse ];
|
|
|
|
propagatedBuildInputs = with python2Packages; [ qscintilla iniparse ];
|
|
|
|
doCheck = false;
|
|
dontStrip = true;
|
|
buildPhase = "";
|
|
installPhase = ''
|
|
${python2Packages.python.executable} setup.py install --prefix=$out
|
|
ln -s $out/bin/thg $out/bin/tortoisehg #convenient alias
|
|
'';
|
|
|
|
meta = {
|
|
description = "Qt based graphical tool for working with Mercurial";
|
|
homepage = http://tortoisehg.bitbucket.org/;
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ "abcz2.uprola@gmail.com" ];
|
|
};
|
|
}
|