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

46 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, fetchurl, python3Packages
, mercurial, qt5
2021-07-03 20:12:34 +02:00
}:
python3Packages.buildPythonApplication rec {
pname = "tortoisehg";
version = "5.8";
src = fetchurl {
url = "https://www.mercurial-scm.org/release/tortoisehg/targz/tortoisehg-${version}.tar.gz";
sha256 = "154q7kyrdk045wx7rsblzx41k3wbvp2f40kzkxmiiaa5n35srsm3";
};
# Extension point for when thg's mercurial is lagging behind mainline.
tortoiseMercurial = mercurial;
2015-07-31 21:29:29 +02:00
propagatedBuildInputs = with python3Packages; [
tortoiseMercurial qscintilla-qt5 iniparse
];
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
2018-02-22 17:41:51 +01:00
doCheck = false; # tests fail with "thg: cannot connect to X server"
postInstall = ''
mkdir -p $out/share/doc/tortoisehg
cp COPYING.txt $out/share/doc/tortoisehg/Copying.txt
# convenient alias
ln -s $out/bin/thg $out/bin/tortoisehg
wrapQtApp $out/bin/thg
2015-07-31 21:29:29 +02:00
'';
checkPhase = ''
echo "test: thg version"
$out/bin/thg version
'';
passthru.mercurial = tortoiseMercurial;
2015-07-31 21:29:29 +02:00
meta = {
description = "Qt based graphical tool for working with Mercurial";
homepage = "https://tortoisehg.bitbucket.io/";
2021-07-03 20:12:34 +02:00
license = lib.licenses.gpl2Only;
2015-07-31 21:29:29 +02:00
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ danbst ];
2015-07-31 21:29:29 +02:00
};
}