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

73 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python, makeWrapper, docutils, unzip, hg-git, dulwich
, guiSupport ? false, tk ? null, curses
2015-10-11 17:30:13 +00:00
, ApplicationServices, cf-private }:
let
# if you bump version, update pkgs.tortoisehg too or ping maintainer
version = "3.7.3";
2014-08-11 22:47:04 +00:00
name = "mercurial-${version}";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "http://mercurial.selenic.com/release/${name}.tar.gz";
sha256 = "0c2vkad9piqkggyk8y310rf619qgdfcwswnk3nv21mg2fhnw96f0";
};
inherit python; # pass it so that the same version can be used in hg2git
pythonPackages = [ curses ];
2015-07-08 21:14:46 +00:00
buildInputs = [ python makeWrapper docutils unzip ];
2015-10-11 17:30:13 +00:00
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin
[ ApplicationServices cf-private ];
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 \
--prefix PYTHONPATH : "$(toPythonPath "$out ${curses}"):$(toPythonPath "$out ${hg-git}"):$(toPythonPath "$out ${dulwich}")" \
$WRAP_TK
done
mkdir -p $out/etc/mercurial
cat >> $out/etc/mercurial/hgrc << EOF
[web]
cacerts = /etc/ssl/certs/ca-certificates.crt
EOF
# copy hgweb.cgi to allow use in apache
mkdir -p $out/share/cgi-bin
2012-07-27 23:51:30 +00:00
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 completion
install -D -v contrib/bash_completion $out/share/bash-completion/completions/mercurial
'';
meta = {
2014-08-11 22:47:04 +00:00
inherit version;
description = "A fast, lightweight SCM system for very large distributed projects";
2014-08-11 22:47:04 +00:00
homepage = "http://mercurial.selenic.com/";
downloadPage = "http://mercurial.selenic.com/release/";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}