nixpkgs/pkgs/applications/version-management/mercurial/default.nix

68 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python2Packages, makeWrapper, unzip
2016-08-16 09:36:07 +00:00
, guiSupport ? false, tk ? null
, ApplicationServices }:
let
# if you bump version, update pkgs.tortoisehg too or ping maintainer
version = "4.9.1";
2014-08-11 22:47:04 +00:00
name = "mercurial-${version}";
inherit (python2Packages) docutils hg-git dulwich python;
in python2Packages.buildPythonApplication {
inherit name;
format = "other";
src = fetchurl {
url = "https://mercurial-scm.org/release/${name}.tar.gz";
sha256 = "0iybbkd9add066729zg01kwz5hhc1s6lhp9rrnsmzq6ihyxj3p8v";
};
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 21:14:46 +00:00
2017-12-28 23:40:44 +00:00
propagatedBuildInputs = [ hg-git dulwich ];
2017-12-28 23:40:44 +00:00
makeFlags = [ "PREFIX=$(out)" ];
postInstall = (stdenv.lib.optionalString guiSupport
''
mkdir -p $out/etc/mercurial
cp contrib/hgk $out/bin
cat >> $out/etc/mercurial/hgrc << EOF
[extensions]
hgk=$out/lib/${python.libPrefix}/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/${tk.libPrefix}
--set HG $out/bin/hg
--prefix PATH : ${tk}/bin "
'') +
''
for i in $(cd $out/bin && ls); do
wrapProgram $out/bin/$i \
$WRAP_TK
done
# copy hgweb.cgi to allow use in apache
mkdir -p $out/share/cgi-bin
2012-07-27 23:51:30 +00:00
cp -v hgweb.cgi contrib/hgweb.wsgi $out/share/cgi-bin
chmod u+x $out/share/cgi-bin/hgweb.cgi
2015-06-11 10:07: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
'';
meta = {
2014-08-11 22:47:04 +00:00
inherit version;
description = "A fast, lightweight SCM system for very large distributed projects";
2018-07-20 01:45:38 +00:00
homepage = https://www.mercurial-scm.org;
downloadPage = https://www.mercurial-scm.org/release/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.eelco ];
2016-05-05 18:28:58 +00:00
updateWalker = true;
platforms = stdenv.lib.platforms.unix;
};
}