parent
2a60519881
commit
88a473fc12
|
@ -1,21 +1,19 @@
|
||||||
{ stdenv, fetchurl, python2Packages, makeWrapper, unzip
|
{ stdenv, fetchurl, python3Packages, makeWrapper, unzip
|
||||||
, guiSupport ? false, tk ? null
|
, guiSupport ? false, tk ? null
|
||||||
, ApplicationServices
|
, ApplicationServices
|
||||||
, mercurialSrc ? fetchurl rec {
|
|
||||||
meta.name = "mercurial-${meta.version}";
|
|
||||||
meta.version = "4.9.1";
|
|
||||||
url = "https://mercurial-scm.org/release/${meta.name}.tar.gz";
|
|
||||||
sha256 = "0iybbkd9add066729zg01kwz5hhc1s6lhp9rrnsmzq6ihyxj3p8v";
|
|
||||||
}
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (python2Packages) docutils hg-git dulwich python;
|
inherit (python3Packages) docutils dulwich python;
|
||||||
|
|
||||||
in python2Packages.buildPythonApplication {
|
in python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "mercurial";
|
||||||
|
version = "5.2.1";
|
||||||
|
|
||||||
inherit (mercurialSrc.meta) name version;
|
src = fetchurl {
|
||||||
src = mercurialSrc;
|
url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz";
|
||||||
|
sha256 = "1pxkd37b0a1mi2zakk1hi122lgz1ffy2fxdnbs8acwlqpw55bc8q";
|
||||||
|
};
|
||||||
|
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
|
@ -24,41 +22,39 @@ in python2Packages.buildPythonApplication {
|
||||||
buildInputs = [ makeWrapper docutils unzip ]
|
buildInputs = [ makeWrapper docutils unzip ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ hg-git dulwich ];
|
propagatedBuildInputs = [ dulwich ];
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
postInstall = (stdenv.lib.optionalString guiSupport
|
postInstall = (stdenv.lib.optionalString guiSupport ''
|
||||||
''
|
mkdir -p $out/etc/mercurial
|
||||||
mkdir -p $out/etc/mercurial
|
cp contrib/hgk $out/bin
|
||||||
cp contrib/hgk $out/bin
|
cat >> $out/etc/mercurial/hgrc << EOF
|
||||||
cat >> $out/etc/mercurial/hgrc << EOF
|
[extensions]
|
||||||
[extensions]
|
hgk=$out/lib/${python.libPrefix}/site-packages/hgext/hgk.py
|
||||||
hgk=$out/lib/${python.libPrefix}/site-packages/hgext/hgk.py
|
EOF
|
||||||
EOF
|
# setting HG so that hgk can be run itself as well (not only hg view)
|
||||||
# setting HG so that hgk can be run itself as well (not only hg view)
|
WRAP_TK=" --set TK_LIBRARY ${tk}/lib/${tk.libPrefix}
|
||||||
WRAP_TK=" --set TK_LIBRARY ${tk}/lib/${tk.libPrefix}
|
--set HG $out/bin/hg
|
||||||
--set HG $out/bin/hg
|
--prefix PATH : ${tk}/bin "
|
||||||
--prefix PATH : ${tk}/bin "
|
'') + ''
|
||||||
'') +
|
for i in $(cd $out/bin && ls); do
|
||||||
''
|
wrapProgram $out/bin/$i \
|
||||||
for i in $(cd $out/bin && ls); do
|
$WRAP_TK
|
||||||
wrapProgram $out/bin/$i \
|
done
|
||||||
$WRAP_TK
|
|
||||||
done
|
|
||||||
|
|
||||||
# copy hgweb.cgi to allow use in apache
|
# copy hgweb.cgi to allow use in apache
|
||||||
mkdir -p $out/share/cgi-bin
|
mkdir -p $out/share/cgi-bin
|
||||||
cp -v hgweb.cgi contrib/hgweb.wsgi $out/share/cgi-bin
|
cp -v hgweb.cgi contrib/hgweb.wsgi $out/share/cgi-bin
|
||||||
chmod u+x $out/share/cgi-bin/hgweb.cgi
|
chmod u+x $out/share/cgi-bin/hgweb.cgi
|
||||||
|
|
||||||
# install bash/zsh completions
|
# install bash/zsh completions
|
||||||
install -v -m644 -D contrib/bash_completion $out/share/bash-completion/completions/_hg
|
install -v -m644 -D contrib/bash_completion $out/share/bash-completion/completions/_hg
|
||||||
install -v -m644 -D contrib/zsh_completion $out/share/zsh/site-functions/_hg
|
install -v -m644 -D contrib/zsh_completion $out/share/zsh/site-functions/_hg
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit (mercurialSrc.meta) version;
|
inherit version;
|
||||||
description = "A fast, lightweight SCM system for very large distributed projects";
|
description = "A fast, lightweight SCM system for very large distributed projects";
|
||||||
homepage = https://www.mercurial-scm.org;
|
homepage = https://www.mercurial-scm.org;
|
||||||
downloadPage = https://www.mercurial-scm.org/release/;
|
downloadPage = https://www.mercurial-scm.org/release/;
|
||||||
|
|
Loading…
Reference in New Issue