nixpkgs/pkgs/applications/version-management/mercurial/default.nix
Lluís Batlle i Rossell 79090f21d4 Fixing the mercurial version in name
svn path=/nixpkgs/trunk/; revision=17444
2009-09-26 15:05:34 +00:00

43 lines
1.2 KiB
Nix

args: with args;
stdenv.mkDerivation {
name = "mercurial-1.2.2";
src = fetchurl {
url = http://www.selenic.com/mercurial/release/mercurial-1.2.1.tar.gz;
sha256 = "0zmldqvl6lbg40d4jbx6hm8790bi8h4dfmawinvq5gfgpij78603";
};
inherit python; # pass it so that the same version can be used in hg2git
buildInputs = [ python makeWrapper ];
makeFlags = "PREFIX=$(out)";
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
'';
meta = {
description = "A fast, lightweight SCM system for very large distributed projects";
homepage = http://www.selenic.com/mercurial/;
license = "GPLv2";
};
}