perlPackages.LaTeXML: patch shebangs to use full path to perl on darwin

This commit is contained in:
Dmitry Kalinkin 2020-11-28 13:17:48 -05:00
parent 2622548c13
commit ca5424b750
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -10710,14 +10710,16 @@ let
url = "mirror://cpan/authors/id/B/BR/BRMILLER/LaTeXML-0.8.4.tar.gz";
sha256 = "92599b45fb587ac14b2ba9cc84b85d9ddc2deaf1cbdc2e89e7a6559e1fbb34cc";
};
propagatedBuildInputs = [ shortenPerlShebang ArchiveZip DBFile FileWhich IOString ImageSize JSONXS LWP ParseRecDescent PodParser TextUnidecode XMLLibXSLT ];
propagatedBuildInputs = [ ArchiveZip DBFile FileWhich IOString ImageSize JSONXS LWP ParseRecDescent PodParser TextUnidecode XMLLibXSLT ];
doCheck = false; # epub test fails
postInstall = ''
shortenPerlShebang $out/bin/latexml
shortenPerlShebang $out/bin/latexmlc
shortenPerlShebang $out/bin/latexmlfind
shortenPerlShebang $out/bin/latexmlmath
shortenPerlShebang $out/bin/latexmlpost
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin shortenPerlShebang;
# shebangs need to be patched before executables are copied to $out
preBuild = ''
patchShebangs bin/
'' + stdenv.lib.optionalString stdenv.isDarwin ''
for file in bin/*; do
shortenPerlShebang "$file"
done
'';
meta = {
description = "Transforms TeX and LaTeX into XML/HTML/MathML";