2012-12-03 04:40:38 +01:00
|
|
|
{ stdenv, fetchurl, python, makeWrapper, docutils, unzip
|
2012-02-22 00:35:35 +01:00
|
|
|
, guiSupport ? false, tk ? null, curses }:
|
2007-08-08 15:36:58 +02:00
|
|
|
|
2011-11-16 15:37:11 +01:00
|
|
|
let
|
2012-07-28 01:44:01 +02:00
|
|
|
name = "mercurial-2.2.3";
|
2011-11-16 15:37:11 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2011-03-24 12:47:55 +01:00
|
|
|
|
2007-08-08 15:36:58 +02:00
|
|
|
src = fetchurl {
|
2011-04-10 02:50:58 +02:00
|
|
|
url = "http://mercurial.selenic.com/release/${name}.tar.gz";
|
2012-07-28 01:44:01 +02:00
|
|
|
sha256 = "0yv7kn96270fixigry910c1i3zzivimh1xjxywqjn9dshn2y6qbw";
|
2007-08-08 15:36:58 +02:00
|
|
|
};
|
|
|
|
|
2008-10-18 23:08:42 +02:00
|
|
|
inherit python; # pass it so that the same version can be used in hg2git
|
2012-02-22 00:35:35 +01:00
|
|
|
pythonPackages = [ curses ];
|
2008-10-18 23:08:42 +02:00
|
|
|
|
2012-12-03 04:40:38 +01:00
|
|
|
buildInputs = [ python makeWrapper docutils unzip ];
|
2012-04-16 01:48:07 +02:00
|
|
|
|
2007-08-08 15:36:58 +02:00
|
|
|
makeFlags = "PREFIX=$(out)";
|
2011-03-24 12:47:55 +01:00
|
|
|
|
2010-07-30 16:47:23 +02:00
|
|
|
postInstall = (stdenv.lib.optionalString guiSupport
|
2008-10-18 14:01:24 +02:00
|
|
|
''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/etc/mercurial
|
2008-10-18 14:01:24 +02:00
|
|
|
cp contrib/hgk $out/bin
|
|
|
|
cat >> $out/etc/mercurial/hgrc << EOF
|
|
|
|
[extensions]
|
2010-02-18 02:49:41 +01:00
|
|
|
hgk=$out/lib/${python.libPrefix}/site-packages/hgext/hgk.py
|
2008-10-18 14:01:24 +02:00
|
|
|
EOF
|
|
|
|
# setting HG so that hgk can be run itself as well (not only hg view)
|
2010-05-28 12:57:50 +02:00
|
|
|
WRAP_TK=" --set TK_LIBRARY \"${tk}/lib/${tk.libPrefix}\"
|
2008-10-18 14:01:24 +02:00
|
|
|
--set HG \"$out/bin/hg\"
|
|
|
|
--prefix PATH : \"${tk}/bin\" "
|
2010-07-30 16:47:23 +02:00
|
|
|
'') +
|
2008-10-18 14:01:24 +02:00
|
|
|
''
|
|
|
|
for i in $(cd $out/bin && ls); do
|
|
|
|
wrapProgram $out/bin/$i \
|
2012-02-22 00:35:35 +01:00
|
|
|
--prefix PYTHONPATH : "$(toPythonPath "$out ${curses}")" \
|
2008-10-18 14:01:24 +02:00
|
|
|
$WRAP_TK
|
|
|
|
done
|
2010-10-06 13:20:20 +02:00
|
|
|
|
|
|
|
# copy hgweb.cgi to allow use in apache
|
2012-01-18 21:16:00 +01:00
|
|
|
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
|
2010-10-06 13:20:20 +02:00
|
|
|
chmod u+x $out/share/cgi-bin/hgweb.cgi
|
2008-10-18 14:01:24 +02:00
|
|
|
'';
|
2007-08-08 15:36:58 +02:00
|
|
|
|
|
|
|
meta = {
|
2008-01-18 12:28:41 +01:00
|
|
|
description = "A fast, lightweight SCM system for very large distributed projects";
|
2012-01-21 20:08:48 +01:00
|
|
|
homepage = "http://www.selenic.com/mercurial/";
|
2008-10-18 14:01:24 +02:00
|
|
|
license = "GPLv2";
|
2007-08-08 15:36:58 +02:00
|
|
|
};
|
|
|
|
}
|