about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2018-03-02 10:52:12 +0100
committerRobin Gloster <mail@glob.in>2018-03-02 11:56:45 +0100
commite616cd8840d8a5e301ca4f4a577f5ad5e72c790a (patch)
tree99e65e3e8667e4098d42e979a87cd329826ae575 /pkgs/tools/typesetting
parent0e050da0f5302c2beae0a898d2db16211378b84a (diff)
downloadnixlib-e616cd8840d8a5e301ca4f4a577f5ad5e72c790a.tar
nixlib-e616cd8840d8a5e301ca4f4a577f5ad5e72c790a.tar.gz
nixlib-e616cd8840d8a5e301ca4f4a577f5ad5e72c790a.tar.bz2
nixlib-e616cd8840d8a5e301ca4f4a577f5ad5e72c790a.tar.lz
nixlib-e616cd8840d8a5e301ca4f4a577f5ad5e72c790a.tar.xz
nixlib-e616cd8840d8a5e301ca4f4a577f5ad5e72c790a.tar.zst
nixlib-e616cd8840d8a5e301ca4f4a577f5ad5e72c790a.zip
tex4ht: obsoleted by tex4ht in texlive
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/tex4ht/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/tools/typesetting/tex/tex4ht/default.nix b/pkgs/tools/typesetting/tex/tex4ht/default.nix
deleted file mode 100644
index dc2d3e052e8a..000000000000
--- a/pkgs/tools/typesetting/tex/tex4ht/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{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
-  };
-}