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

67 lines
2.1 KiB
Nix
Raw Normal View History

2016-09-26 17:41:54 +02:00
{ stdenv, fetchurl, python2Packages, makeWrapper, docutils, unzip
2016-08-16 11:36:07 +02:00
, guiSupport ? false, tk ? null
2015-10-11 19:30:13 +02:00
, ApplicationServices, cf-private }:
let
# if you bump version, update pkgs.tortoisehg too or ping maintainer
2018-02-21 21:56:00 +01:00
version = "4.5";
2014-08-12 00:47:04 +02:00
name = "mercurial-${version}";
inherit (python2Packages) docutils hg-git dulwich python;
in python2Packages.buildPythonApplication {
inherit name;
format = "other";
src = fetchurl {
url = "https://mercurial-scm.org/release/${name}.tar.gz";
2018-02-21 21:56:00 +01:00
sha256 = "0rgjy42zdlbzgp4qq49amzplfcvycyijf4kdhc5wk3fqz7cki4sd";
};
inherit python; # pass it so that the same version can be used in hg2git
2017-12-29 00:40:44 +01:00
buildInputs = [ makeWrapper docutils unzip ]
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices ];
2015-07-08 23:14:46 +02:00
2017-12-29 00:40:44 +01:00
propagatedBuildInputs = [ hg-git dulwich ];
2017-12-29 00:40:44 +01: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
2012-07-28 01:51:30 +02:00
cp -v hgweb.cgi contrib/hgweb.wsgi $out/share/cgi-bin
chmod u+x $out/share/cgi-bin/hgweb.cgi
2015-06-11 12:07:15 +02:00
# install bash completion
install -D -v contrib/bash_completion $out/share/bash-completion/completions/mercurial
'';
meta = {
2014-08-12 00:47:04 +02:00
inherit version;
description = "A fast, lightweight SCM system for very large distributed projects";
homepage = http://mercurial.selenic.com/;
2014-08-12 00:47:04 +02:00
downloadPage = "http://mercurial.selenic.com/release/";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.eelco ];
2016-05-05 20:28:58 +02:00
updateWalker = true;
platforms = stdenv.lib.platforms.unix;
};
}