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

67 lines
2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python3Packages, makeWrapper, unzip
2016-08-16 09:36:07 +00:00
, guiSupport ? false, tk ? null
, ApplicationServices
}:
let
inherit (python3Packages) docutils dulwich python;
in python3Packages.buildPythonApplication rec {
pname = "mercurial";
2020-02-13 00:01:08 +00:00
version = "5.3";
src = fetchurl {
url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz";
2020-02-13 00:01:08 +00:00
sha256 = "1fgr8k2ra7hs2dm8048pw01anmd41as246a5vm4m2sb7dcfzczz5";
};
format = "other";
inherit python; # pass it so that the same version can be used in hg2git
2017-12-28 23:40:44 +00:00
buildInputs = [ makeWrapper docutils unzip ]
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices ];
2015-07-08 21:14:46 +00:00
propagatedBuildInputs = [ dulwich ];
2017-12-28 23:40:44 +00:00
makeFlags = [ "PREFIX=$(out)" ];
postInstall = (stdenv.lib.optionalString guiSupport ''
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
# 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
# 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
'';
meta = {
inherit version;
description = "A fast, lightweight SCM system for very large distributed projects";
2018-07-20 01:45:38 +00:00
homepage = https://www.mercurial-scm.org;
downloadPage = https://www.mercurial-scm.org/release/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.eelco ];
2016-05-05 18:28:58 +00:00
updateWalker = true;
platforms = stdenv.lib.platforms.unix;
};
}