mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
37 lines
1.3 KiB
Nix
37 lines
1.3 KiB
Nix
{ stdenv, fetchgit, mercurial, makeWrapper,
|
|
asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt, libxml2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
rev = "e716a9e1a9e460a45663694ba4e9e8894a8452b2";
|
|
version = "0.2-${rev}";
|
|
name = "git-remote-hg-${version}";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "git://github.com/fingolfin/git-remote-hg.git";
|
|
sha256 = "0cmlfdxfabrs3x10mfjfap8wz67s8xk2pjn2wlcj9k2v84gji60m";
|
|
};
|
|
|
|
buildInputs = [ mercurial.python mercurial makeWrapper
|
|
asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt libxml2
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
installFlags = "HOME=\${out} install-doc";
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/git-remote-hg \
|
|
--prefix PYTHONPATH : "$(echo ${mercurial}/lib/python*/site-packages):$(echo ${mercurial.python}/lib/python*/site-packages)${stdenv.lib.concatMapStrings (x: ":$(echo ${x}/lib/python*/site-packages)") mercurial.pythonPackages}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/felipec/git-remote-hg";
|
|
description = "Semi-official Mercurial bridge from Git project, once installed, it allows you to clone, fetch and push to and from Mercurial repositories as if they were Git ones";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.garbas ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|