summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-11 00:55:25 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-11 01:41:54 +0100
commit9e44faab97bfef1335e53434841fffa42dabdace (patch)
tree72032ad8e8cfa5df9d2da50a53b8750a27f1006d /pkgs/tools/typesetting
parentfcb913b3a7b37544dbfd6522146b79c4b301cc24 (diff)
downloadnixpkgs-9e44faab97bfef1335e53434841fffa42dabdace.tar
nixpkgs-9e44faab97bfef1335e53434841fffa42dabdace.tar.gz
nixpkgs-9e44faab97bfef1335e53434841fffa42dabdace.tar.bz2
nixpkgs-9e44faab97bfef1335e53434841fffa42dabdace.tar.lz
nixpkgs-9e44faab97bfef1335e53434841fffa42dabdace.tar.xz
nixpkgs-9e44faab97bfef1335e53434841fffa42dabdace.tar.zst
nixpkgs-9e44faab97bfef1335e53434841fffa42dabdace.zip
latex2html: remove dead package
Broken since Aug 2015, but upstream has been dead for donkey's
years. Only dependent was systemtap. No reasonable way (or indeed
reason) to artificially keep this alive.

Aim for the head.
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/latex2html/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/tools/typesetting/tex/latex2html/default.nix b/pkgs/tools/typesetting/tex/latex2html/default.nix
deleted file mode 100644
index 45fec9f76da..00000000000
--- a/pkgs/tools/typesetting/tex/latex2html/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ 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;
-  };
-
-}