forked from mirrors/nixpkgs
Merge pull request #117161 from xworld21/latexml-perlmagick
perlPackages.LaTeXML: enable ImageMagick
This commit is contained in:
commit
7949331040
|
@ -10955,11 +10955,12 @@ let
|
|||
url = "mirror://cpan/authors/id/B/BR/BRMILLER/${pname}-${version}.tar.gz";
|
||||
sha256 = "0dr69rgl4si9i9ww1r4dc7apgb7y6f7ih808w4g0924cvz823s0x";
|
||||
};
|
||||
propagatedBuildInputs = [ ArchiveZip DBFile FileWhich IOString ImageSize JSONXS LWP ParseRecDescent PodParser TextUnidecode XMLLibXSLT ];
|
||||
propagatedBuildInputs = [ ArchiveZip DBFile FileWhich IOString ImageSize JSONXS LWP ParseRecDescent PerlMagick PodParser TextUnidecode XMLLibXSLT ];
|
||||
preCheck = ''
|
||||
rm t/931_epub.t # epub test fails
|
||||
'';
|
||||
nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
|
||||
buildInputs = [ pkgs.makeWrapper ];
|
||||
# shebangs need to be patched before executables are copied to $out
|
||||
preBuild = ''
|
||||
patchShebangs bin/
|
||||
|
@ -10968,6 +10969,12 @@ let
|
|||
shortenPerlShebang "$file"
|
||||
done
|
||||
'';
|
||||
postInstall = ''
|
||||
for file in latexmlc latexmlmath latexmlpost ; do
|
||||
# add runtime dependencies that cause silent failures when missing
|
||||
wrapProgram $out/bin/$file --prefix PATH : ${lib.makeBinPath [ pkgs.ghostscript pkgs.potrace ]}
|
||||
done
|
||||
'';
|
||||
meta = {
|
||||
description = "Transforms TeX and LaTeX into XML/HTML/MathML";
|
||||
license = lib.licenses.free;
|
||||
|
|
Loading…
Reference in a new issue