3
0
Fork 0
forked from mirrors/nixpkgs

tortoisehg: init at 3.4.2

This commit is contained in:
danbst 2015-07-31 19:29:29 +00:00
parent 3845b25623
commit fc155f74d6
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ pkgs, lib, mercurial, pyPackages ? pkgs.python27Packages }:
pkgs.buildPythonPackage rec {
name = "tortoisehg-${version}";
version = "3.4.2";
namePrefix = "";
src = pkgs.fetchurl {
url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz";
sha256 = "18a587c8fybfjxbcj8i2smypxy7vfzmmrzibs74n3zy6dlb949nj";
};
pythonPath = [ pkgs.pyqt4 mercurial ]
++ (with pyPackages; [qscintilla iniparse]);
propagatedBuildInputs = with pyPackages; [ qscintilla iniparse ];
doCheck = false;
postUnpack = ''
substituteInPlace $sourceRoot/setup.py \
--replace "/usr/share/" "$out/share/"
'';
postInstall = ''
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" ];
};
}

View file

@ -12858,6 +12858,8 @@ let
wrapPython = pythonPackages.wrapPython;
};
tortoisehg = callPackage ../applications/version-management/tortoisehg { };
toxic = callPackage ../applications/networking/instant-messengers/toxic { };
transcode = callPackage ../applications/audio/transcode { };