2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, python3Packages, makeWrapper, unzip
|
2016-08-16 10:36:07 +01:00
|
|
|
, guiSupport ? false, tk ? null
|
2019-08-18 16:28:03 +01:00
|
|
|
, ApplicationServices
|
|
|
|
}:
|
2007-08-08 14:36:58 +01:00
|
|
|
|
2011-11-16 14:37:11 +00:00
|
|
|
let
|
2020-11-19 19:25:52 +00:00
|
|
|
inherit (python3Packages) docutils python;
|
2019-08-18 16:28:03 +01:00
|
|
|
|
2019-12-21 07:24:51 +00:00
|
|
|
in python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "mercurial";
|
2020-11-19 19:29:46 +00:00
|
|
|
version = "5.6";
|
2011-03-24 11:47:55 +00:00
|
|
|
|
2019-12-21 07:24:51 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz";
|
2020-11-19 19:29:46 +00:00
|
|
|
sha256 = "1hk2y30zzdnlv8f71kabvh0xi9c7qhp28ksh20vpd0r712sv79yz";
|
2019-12-21 07:24:51 +00:00
|
|
|
};
|
2019-08-18 16:28:03 +01:00
|
|
|
|
|
|
|
format = "other";
|
2007-08-08 14:36:58 +01:00
|
|
|
|
2020-11-19 19:25:52 +00:00
|
|
|
passthru = { inherit python; }; # pass it so that the same version can be used in hg2git
|
2008-10-18 22:08:42 +01:00
|
|
|
|
2017-12-28 23:40:44 +00:00
|
|
|
buildInputs = [ makeWrapper docutils unzip ]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ ApplicationServices ];
|
2015-07-08 22:14:46 +01:00
|
|
|
|
2017-12-28 23:40:44 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2011-03-24 11:47:55 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
postInstall = (lib.optionalString guiSupport ''
|
2019-12-21 07:24:51 +00:00
|
|
|
mkdir -p $out/etc/mercurial
|
|
|
|
cp contrib/hgk $out/bin
|
|
|
|
cat >> $out/etc/mercurial/hgrc << EOF
|
|
|
|
[extensions]
|
|
|
|
hgk=$out/lib/${python.libPrefix}/site-packages/hgext/hgk.py
|
|
|
|
EOF
|
|
|
|
# setting HG so that hgk can be run itself as well (not only hg view)
|
|
|
|
WRAP_TK=" --set TK_LIBRARY ${tk}/lib/${tk.libPrefix}
|
|
|
|
--set HG $out/bin/hg
|
|
|
|
--prefix PATH : ${tk}/bin "
|
|
|
|
'') + ''
|
|
|
|
for i in $(cd $out/bin && ls); do
|
|
|
|
wrapProgram $out/bin/$i \
|
|
|
|
$WRAP_TK
|
|
|
|
done
|
2010-10-06 12:20:20 +01:00
|
|
|
|
2019-12-21 07:24:51 +00:00
|
|
|
# copy hgweb.cgi to allow use in apache
|
|
|
|
mkdir -p $out/share/cgi-bin
|
|
|
|
cp -v hgweb.cgi contrib/hgweb.wsgi $out/share/cgi-bin
|
|
|
|
chmod u+x $out/share/cgi-bin/hgweb.cgi
|
2015-06-11 11:07:15 +01:00
|
|
|
|
2019-12-21 07:24:51 +00:00
|
|
|
# install bash/zsh completions
|
|
|
|
install -v -m644 -D contrib/bash_completion $out/share/bash-completion/completions/_hg
|
|
|
|
install -v -m644 -D contrib/zsh_completion $out/share/zsh/site-functions/_hg
|
|
|
|
'';
|
2007-08-08 14:36:58 +01:00
|
|
|
|
|
|
|
meta = {
|
2019-12-21 07:24:51 +00:00
|
|
|
inherit version;
|
2008-01-18 11:28:41 +00:00
|
|
|
description = "A fast, lightweight SCM system for very large distributed projects";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.mercurial-scm.org";
|
|
|
|
downloadPage = "https://www.mercurial-scm.org/release/";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2016-05-05 19:28:58 +01:00
|
|
|
updateWalker = true;
|
2021-01-15 13:21:58 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2007-08-08 14:36:58 +01:00
|
|
|
};
|
|
|
|
}
|