diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:01:58 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:05 +0200 |
commit | 63ccc655ef65794b27af6186e671940ecf856901 (patch) | |
tree | ec1f1cce4957103a9e2af372e740d05a6b7a5a50 /gnu | |
parent | b1cd26e2b256e558b153c75be4aa0805f348f6be (diff) | |
download | guix-63ccc655ef65794b27af6186e671940ecf856901.tar.gz |
gnu: Add texlive-ascii-chart.
* gnu/packages/tex.scm (texlive-ascii-chart): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2d3f929792..9a4fa9548c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1658,6 +1658,24 @@ three extra questions (with their answers) that Michael Downes didn't manage to get onto CTAN.") (license license:lppl))) +(define-public texlive-ascii-chart + (package + (name "texlive-ascii-chart") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/support/ascii-chart/") + (base32 + "1m2x7iwz80plq6hbhp9xia6bp8wbi03iifs0pkr7ji3gn8hqgh1r"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ascii-chart") + (synopsis "ASCII wall chart") + (description + "This package contains an ASCII wall chart. The document may be +converted between Plain TeX and LaTeX by a simple editing action.") + (license license:lppl1.3+))) + (define-public texlive-autoaligne (package (name "texlive-autoaligne") |