nixpkgs/pkgs/tools/typesetting/tex/tex4ht/default.nix
Vladimír Čunát 2aff29c7b2
tex4ht: deprecate in favor of texlive.tex4ht
I don't make an alias, as the attribute is used in a different way.
2017-02-11 18:09:43 +01:00

40 lines
1 KiB
Nix

{stdenv, fetchurl, tetex, unzip}:
stdenv.mkDerivation rec {
name = "tex4ht-1.0.2009_06_11_1038";
src = fetchurl {
url = "http://tug.org/applications/tex4ht/tex4ht.zip";
sha256 = "15gj18ihds6530af42clpa4zskak5kah9wzs2hd19a9ymwjsccd6";
};
buildInputs = [ tetex unzip ];
hardeningDisable = [ "format" ];
buildPhase = ''
cd src
for f in tex4ht t4ht htcmd ; do
# -DENVFILE="$out/share/texmf-nix/tex4ht/base/unix/tex4ht.env"
''${CC:-gcc} -o $f $f.c -I${tetex}/include -L${tetex}/lib -DHAVE_DIRENT_H -DHAVE_DIRENT_H -DKPATHSEA -lkpathsea
done
cd -
'';
installPhase = ''
mkdir -p $out/bin
for f in src/tex4ht src/t4ht src/htcmd "bin/unix/"*; do
mv $f $out/bin/
done
mv texmf $out/texmf-dist
'';
meta = {
homepage = "http://tug.org/tex4ht/";
description = "A system to convert (La)TeX documents to HTML and various other formats";
license = stdenv.lib.licenses.lppl12;
platforms = stdenv.lib.platforms.unix;
broken = true; # use the one from texlive.tex4ht
};
}