nixpkgs/pkgs/applications/version-management/tortoisehg/default.nix

32 lines
989 B
Nix
Raw Normal View History

{lib, fetchurl, mercurial, pythonPackages}:
2015-07-31 19:29:29 +00:00
pythonPackages.buildPythonApplication rec {
2015-07-31 19:29:29 +00:00
name = "tortoisehg-${version}";
2016-09-23 15:51:54 +00:00
version = "3.9.1";
2015-07-31 19:29:29 +00:00
src = fetchurl {
2015-07-31 19:29:29 +00:00
url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz";
2016-09-23 15:51:54 +00:00
sha256 = "12bqvkkwkb6m5hls7gipkxbnspfrk1k6l9l0fff0wp1zajnp4pnn";
2015-07-31 19:29:29 +00:00
};
pythonPath = with pythonPackages; [ pyqt4 mercurial qscintilla iniparse ];
2015-07-31 19:29:29 +00:00
propagatedBuildInputs = with pythonPackages; [ qscintilla iniparse ];
2015-07-31 19:29:29 +00:00
doCheck = false;
dontStrip = true;
buildPhase = "";
installPhase = ''
${pythonPackages.python.executable} setup.py install --prefix=$out
ln -s $out/bin/thg $out/bin/tortoisehg #convenient alias
2015-07-31 19:29:29 +00:00
'';
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" ];
};
}