nixpkgs/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix

37 lines
1.3 KiB
Nix
Raw Normal View History

2014-06-28 13:15:31 +00:00
{ stdenv, fetchgit, mercurial, makeWrapper,
asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt, libxml2
2014-06-28 13:15:31 +00:00
}:
stdenv.mkDerivation rec {
rev = "e716a9e1a9e460a45663694ba4e9e8894a8452b2";
version = "0.2-${rev}";
2014-06-28 13:15:31 +00:00
name = "git-remote-hg-${version}";
src = fetchgit {
inherit rev;
url = "git://github.com/fingolfin/git-remote-hg.git";
sha256 = "0cmlfdxfabrs3x10mfjfap8wz67s8xk2pjn2wlcj9k2v84gji60m";
2014-06-28 13:15:31 +00:00
};
buildInputs = [ mercurial.python mercurial makeWrapper
asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt libxml2
2014-06-28 13:15:31 +00:00
];
doCheck = false;
installFlags = "HOME=\${out} install-doc";
2014-06-28 13:15:31 +00:00
postInstall = ''
wrapProgram $out/bin/git-remote-hg \
2016-10-13 22:03:12 +00:00
--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 or []}"
2014-06-28 13:15:31 +00:00
'';
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";
2014-06-28 13:15:31 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.garbas ];
platforms = platforms.unix;
2014-06-28 13:15:31 +00:00
};
}