From 3fbe61197c50c64f7afcc15d3eb547510a1477fa Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 16 Jul 2023 17:42:04 +0200 Subject: [PATCH] gnu: Add texlive-dvi2tty. * gnu/packages/tex.scm (texlive-dvi2tty): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index db6cb7800e..df86e9f931 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1681,6 +1681,27 @@ which is readily readable by humans. The DTL bundle contains an assembler LaTeX source (.dtx) file.") (license license:gpl3+))) +(define-public texlive-dvi2tty + (package + (name "texlive-dvi2tty") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/disdvi.1" + "doc/man/man1/disdvi.man1.pdf" + "doc/man/man1/dvi2tty.1" + "doc/man/man1/dvi2tty.man1.pdf") + (base32 + "108y0qxh13x0iivgsvkk4370f471p03nyl4x9nn7lng1wrsafp6h"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/dvi2tty") + (synopsis "Produce ASCII from DVI") + (description + "This package provides a DVI driver to produce an ASCII representation of +the document.") + (license license:gpl2))) + (define-public texlive-dvipsconfig (package (name "texlive-dvipsconfig")