2008-01-28 20:28:38 +01:00
|
|
|
args: with args;
|
2007-08-08 15:36:58 +02:00
|
|
|
|
2009-09-26 17:08:47 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mercurial-1.2.1";
|
2007-08-08 15:36:58 +02:00
|
|
|
src = fetchurl {
|
2009-09-26 17:08:47 +02:00
|
|
|
url = "http://www.selenic.com/mercurial/release/${name}.tar.gz";
|
2009-04-02 14:18:53 +02:00
|
|
|
sha256 = "0zmldqvl6lbg40d4jbx6hm8790bi8h4dfmawinvq5gfgpij78603";
|
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
|
|
|
|
|
2008-01-18 12:28:41 +01:00
|
|
|
buildInputs = [ python makeWrapper ];
|
2007-08-08 15:36:58 +02:00
|
|
|
makeFlags = "PREFIX=$(out)";
|
2008-10-18 14:01:24 +02:00
|
|
|
postInstall = (if args.guiSupport then
|
|
|
|
''
|
|
|
|
ensureDir $out/etc/mercurial
|
|
|
|
cp contrib/hgk $out/bin
|
|
|
|
cat >> $out/etc/mercurial/hgrc << EOF
|
|
|
|
[extensions]
|
|
|
|
hgk=$out/lib/python2.5/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/tk8.4\"
|
|
|
|
--set HG \"$out/bin/hg\"
|
|
|
|
--prefix PATH : \"${tk}/bin\" "
|
|
|
|
''
|
|
|
|
else "")
|
|
|
|
+
|
|
|
|
''
|
|
|
|
for i in $(cd $out/bin && ls); do
|
|
|
|
wrapProgram $out/bin/$i \
|
|
|
|
--prefix PYTHONPATH : "$(toPythonPath $out)" \
|
|
|
|
$WRAP_TK
|
|
|
|
done
|
|
|
|
'';
|
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";
|
|
|
|
homepage = http://www.selenic.com/mercurial/;
|
2008-10-18 14:01:24 +02:00
|
|
|
license = "GPLv2";
|
2007-08-08 15:36:58 +02:00
|
|
|
};
|
|
|
|
}
|