forked from mirrors/nixpkgs
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.
This commit is contained in:
parent
fcb913b3a7
commit
9e44faab97
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
|
@ -15483,10 +15483,6 @@ let
|
|||
|
||||
DisnixWebService = callPackage ../tools/package-management/disnix/DisnixWebService { };
|
||||
|
||||
latex2html = callPackage ../tools/typesetting/tex/latex2html/default.nix {
|
||||
tex = tetex;
|
||||
};
|
||||
|
||||
lkproof = callPackage ../tools/typesetting/tex/lkproof { };
|
||||
|
||||
mysqlWorkbench = newScope gnome ../applications/misc/mysql-workbench {
|
||||
|
|
Loading…
Reference in a new issue