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