summary refs log tree commit diff
path: root/pkgs/tools/typesetting/tex/latex2html/default.nix
blob: 45fec9f76da03694223e1a4a19436e323861c914 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, tex, perl, netpbm, ghostscript }:

stdenv.mkDerivation rec {
  name = "latex2html-2008";

  src = fetchurl {
    url = "http://www.latex2html.org/~latex2ht/current/${name}.tar.gz";
    sha256 = "1b9pld6wz01p1pf5qwxjipdkhq34hmmw9mfkjp150hlqlcanhiar";
  };

  buildInputs = [ tex perl ghostscript netpbm ];

  preConfigure = ''
    patchShebangs .
    sed -i -e "s|#! /bin/cat|#! $(type -p cat)|" configure
    configureFlags="--with-texpath=$out/share/texmf-nix";
  '';

  meta = {
    homepage = "http://www.latex2html.org/";
    description = "Converter written in Perl that converts LaTeX documents to HTML";
    license = stdenv.lib.licenses.gpl2Plus;

    broken = true;
  };

}