2021-05-04 09:54:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, python3Packages, makeWrapper, gettext
|
2021-05-04 10:24:00 +00:00
|
|
|
, re2Support ? true
|
2021-05-03 18:05:01 +00:00
|
|
|
, rustSupport ? stdenv.hostPlatform.isLinux, rustPlatform
|
2016-08-16 09:36:07 +00:00
|
|
|
, guiSupport ? false, tk ? null
|
2019-08-18 15:28:03 +00:00
|
|
|
, ApplicationServices
|
|
|
|
}:
|
2007-08-08 13:36:58 +00:00
|
|
|
|
2011-11-16 14:37:11 +00:00
|
|
|
let
|
2021-05-03 18:59:14 +00:00
|
|
|
inherit (python3Packages) docutils python fb-re2;
|
2019-08-18 15:28:03 +00:00
|
|
|
|
2019-12-21 07:24:51 +00:00
|
|
|
in python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "mercurial";
|
2021-05-03 17:32:36 +00:00
|
|
|
version = "5.8";
|
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";
|
2021-05-03 17:32:36 +00:00
|
|
|
sha256 = "17rhlmmkqz5ll3k68jfzpcifg3nndbcbc2nx7kw8xn3qcj7nlpgw";
|
2019-12-21 07:24:51 +00:00
|
|
|
};
|
2019-08-18 15:28:03 +00:00
|
|
|
|
2021-05-04 09:54:16 +00:00
|
|
|
patches = [
|
|
|
|
# https://phab.mercurial-scm.org/D10638, needed for below patch to apply
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://phab.mercurial-scm.org/file/data/oymk4awh2dd7q6cwjbzu/PHID-FILE-bfcr7qrp5spg42wspxpd/D10638.diff";
|
|
|
|
sha256 = "0mfi324is02l7cnd3j0gbmg5rpyyqn3afg3f73flnfwmz5njqa5f";
|
|
|
|
})
|
|
|
|
# https://phab.mercurial-scm.org/D10639, fixes https://bz.mercurial-scm.org/show_bug.cgi?id=6514
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://phab.mercurial-scm.org/file/data/re4uqdhtknjiacx2ogwu/PHID-FILE-4m26id65dno5gzix2ngh/D10639.diff";
|
|
|
|
sha256 = "0h5ilrd2x1789fr6sf4k1mcvxdh0xdyr94yawdacw87v3x12c8cb";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-08-18 15:28:03 +00:00
|
|
|
format = "other";
|
2007-08-08 13:36:58 +00: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 21:08:42 +00:00
|
|
|
|
2021-05-03 18:05:01 +00:00
|
|
|
cargoDeps = if rustSupport then rustPlatform.fetchCargoTarball {
|
|
|
|
inherit src;
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
sha256 = "1kc2giqvfwsdl5fb0qmz96ws1gdrs3skfdzvpiif2i8f7r4nqlhd";
|
|
|
|
sourceRoot = "${pname}-${version}/rust";
|
|
|
|
} else null;
|
|
|
|
cargoRoot = if rustSupport then "rust" else null;
|
|
|
|
|
2021-05-04 10:24:00 +00:00
|
|
|
propagatedBuildInputs = lib.optional re2Support fb-re2;
|
2021-05-03 18:38:56 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper gettext ]
|
2021-05-03 18:05:01 +00:00
|
|
|
++ lib.optionals rustSupport (with rustPlatform; [
|
|
|
|
cargoSetupHook
|
|
|
|
rust.cargo
|
|
|
|
rust.rustc
|
|
|
|
]);
|
2021-02-20 21:01:53 +00:00
|
|
|
buildInputs = [ docutils ]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ ApplicationServices ];
|
2015-07-08 21:14:46 +00:00
|
|
|
|
2021-05-03 18:05:01 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
|
|
|
++ lib.optional rustSupport "PURE=--rust";
|
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 11:20:20 +00: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 10:07:15 +00: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 13:36:58 +00:00
|
|
|
|
2021-05-03 18:15:18 +00:00
|
|
|
meta = with lib; {
|
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 01:11:51 +00:00
|
|
|
homepage = "https://www.mercurial-scm.org";
|
|
|
|
downloadPage = "https://www.mercurial-scm.org/release/";
|
2021-05-03 18:15:18 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ eelco lukegb ];
|
2016-05-05 18:28:58 +00:00
|
|
|
updateWalker = true;
|
2021-05-03 18:15:18 +00:00
|
|
|
platforms = platforms.unix;
|
2007-08-08 13:36:58 +00:00
|
|
|
};
|
|
|
|
}
|