2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
2017-01-11 10:36:19 +00:00
|
|
|
, ghostscript, netpbm, perl }:
|
|
|
|
# TODO: withTex
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "latex2html";
|
2023-01-11 15:22:01 +00:00
|
|
|
version = "2023";
|
2017-01-11 10:36:19 +00:00
|
|
|
|
2019-09-01 03:17:53 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-01-11 15:22:01 +00:00
|
|
|
sha256 = "sha256-VQ416ieqZ+UqI2sgsh+YPkcdn2SmtXFhPqJd1tp49EQ=";
|
2017-01-11 10:36:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ghostscript netpbm perl ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
./configure \
|
|
|
|
--prefix="$out" \
|
|
|
|
--without-mktexlsr \
|
|
|
|
--with-texpath=$out/share/texmf/tex/latex/html
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for p in $out/bin/{latex2html,pstoimg}; do \
|
|
|
|
wrapProgram $p --add-flags '--tmp="''${TMPDIR:-/tmp}"'
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-01-11 10:36:19 +00:00
|
|
|
description = "LaTeX-to-HTML translator";
|
|
|
|
longDescription = ''
|
|
|
|
A Perl program that translates LaTeX into HTML (HyperText Markup
|
|
|
|
Language), optionally creating separate HTML files corresponding to each
|
|
|
|
unit (e.g., section) of the document. LaTeX2HTML proceeds by interpreting
|
|
|
|
LaTeX (to the best of its abilities). It contains definitions from a wide
|
|
|
|
variety of classes and packages, and users may add further definitions by
|
|
|
|
writing Perl scripts that provide information about class/package
|
|
|
|
commands.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.ctan.org/pkg/latex2html";
|
2017-01-11 10:36:19 +00:00
|
|
|
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = with maintainers; [ yurrriq ];
|
|
|
|
};
|
|
|
|
}
|