mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
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 or []}"
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|