2016-09-26 08:41:54 -07:00
|
|
|
{ stdenv, fetchurl, python2Packages, makeWrapper, docutils, unzip
|
2016-08-16 02:36:07 -07:00
|
|
|
, guiSupport ? false, tk ? null
|
2015-10-11 10:30:13 -07:00
|
|
|
, ApplicationServices, cf-private }:
|
2007-08-08 06:36:58 -07:00
|
|
|
|
2011-11-16 06:37:11 -08:00
|
|
|
let
|
2016-04-22 08:59:40 -07:00
|
|
|
# if you bump version, update pkgs.tortoisehg too or ping maintainer
|
2017-09-18 12:43:42 -07:00
|
|
|
version = "4.3.2";
|
2014-08-11 15:47:04 -07:00
|
|
|
name = "mercurial-${version}";
|
2016-10-13 13:11:30 -07:00
|
|
|
inherit (python2Packages) docutils hg-git dulwich python;
|
2017-03-21 05:01:17 -07:00
|
|
|
in python2Packages.buildPythonApplication {
|
2011-11-16 06:37:11 -08:00
|
|
|
inherit name;
|
2017-03-21 05:01:17 -07:00
|
|
|
format = "other";
|
2011-03-24 04:47:55 -07:00
|
|
|
|
2007-08-08 06:36:58 -07:00
|
|
|
src = fetchurl {
|
2016-06-12 11:23:00 -07:00
|
|
|
url = "https://mercurial-scm.org/release/${name}.tar.gz";
|
2017-09-18 12:43:42 -07:00
|
|
|
sha256 = "0j6djq584rcj9ghz59ddqzrfq49lykg3wqwap5fnzp9apa4gcnqg";
|
2007-08-08 06:36:58 -07:00
|
|
|
};
|
|
|
|
|
2008-10-18 14:08:42 -07:00
|
|
|
inherit python; # pass it so that the same version can be used in hg2git
|
|
|
|
|
2017-12-28 15:40:44 -08:00
|
|
|
buildInputs = [ makeWrapper docutils unzip ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices ];
|
2015-07-08 14:14:46 -07:00
|
|
|
|
2017-12-28 15:40:44 -08:00
|
|
|
propagatedBuildInputs = [ hg-git dulwich ];
|
2012-04-15 16:48:07 -07:00
|
|
|
|
2017-12-28 15:40:44 -08:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2011-03-24 04:47:55 -07:00
|
|
|
|
2010-07-30 07:47:23 -07:00
|
|
|
postInstall = (stdenv.lib.optionalString guiSupport
|
2008-10-18 05:01:24 -07:00
|
|
|
''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/etc/mercurial
|
2008-10-18 05:01:24 -07:00
|
|
|
cp contrib/hgk $out/bin
|
|
|
|
cat >> $out/etc/mercurial/hgrc << EOF
|
|
|
|
[extensions]
|
2010-02-17 17:49:41 -08:00
|
|
|
hgk=$out/lib/${python.libPrefix}/site-packages/hgext/hgk.py
|
2008-10-18 05:01:24 -07:00
|
|
|
EOF
|
|
|
|
# setting HG so that hgk can be run itself as well (not only hg view)
|
2010-05-28 03:57:50 -07:00
|
|
|
WRAP_TK=" --set TK_LIBRARY \"${tk}/lib/${tk.libPrefix}\"
|
2008-10-18 05:01:24 -07:00
|
|
|
--set HG \"$out/bin/hg\"
|
|
|
|
--prefix PATH : \"${tk}/bin\" "
|
2010-07-30 07:47:23 -07:00
|
|
|
'') +
|
2008-10-18 05:01:24 -07:00
|
|
|
''
|
|
|
|
for i in $(cd $out/bin && ls); do
|
|
|
|
wrapProgram $out/bin/$i \
|
|
|
|
$WRAP_TK
|
|
|
|
done
|
2010-10-06 04:20:20 -07:00
|
|
|
|
|
|
|
# copy hgweb.cgi to allow use in apache
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/share/cgi-bin
|
2012-07-27 16:51:30 -07:00
|
|
|
cp -v hgweb.cgi contrib/hgweb.wsgi $out/share/cgi-bin
|
2010-10-06 04:20:20 -07:00
|
|
|
chmod u+x $out/share/cgi-bin/hgweb.cgi
|
2015-06-11 03:07:15 -07:00
|
|
|
|
|
|
|
# install bash completion
|
|
|
|
install -D -v contrib/bash_completion $out/share/bash-completion/completions/mercurial
|
2008-10-18 05:01:24 -07:00
|
|
|
'';
|
2007-08-08 06:36:58 -07:00
|
|
|
|
|
|
|
meta = {
|
2014-08-11 15:47:04 -07:00
|
|
|
inherit version;
|
2008-01-18 03:28:41 -08:00
|
|
|
description = "A fast, lightweight SCM system for very large distributed projects";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://mercurial.selenic.com/;
|
2014-08-11 15:47:04 -07:00
|
|
|
downloadPage = "http://mercurial.selenic.com/release/";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-05-15 04:11:24 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2016-05-05 11:28:58 -07:00
|
|
|
updateWalker = true;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2007-08-08 06:36:58 -07:00
|
|
|
};
|
|
|
|
}
|