diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 23:41:57 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:46 +0200 |
commit | ed54e117a7f67d7b95359dd5d6176516c7a7a337 (patch) | |
tree | 1580818a79504c168ec4118c647dff8a562b395b /gnu | |
parent | f49962b3e28149374746bfd39e2715dd93e0d18e (diff) | |
download | guix-ed54e117a7f67d7b95359dd5d6176516c7a7a337.tar.gz |
gnu: Add texlive-etdipa.
* gnu/packages/tex.scm (texlive-etdipa): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ea3accabca..598548d68d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -31419,6 +31419,26 @@ for which the use of thin space is recommended.") the journal of the German-speaking TeX User Group.") (license license:lppl1.3c))) +(define-public texlive-etdipa + (package + (name "texlive-etdipa") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/etdipa/") + (base32 + "1jp35apalaa1lh44dbn1zayavv1n3wkm0v69hgy8vdz73yp5yvhz"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/etdipa") + (synopsis "Simple, lightweight template for scientific documents") + (description + "This package provides a complete working directory for the scientific +documentation of arbitrary projects. It was originally developed to provide +a template for Austrian @emph{Diplomarbeiten} or @emph{Vorwissenschaftliche +Arbeiten}, which are scientfic projects of students at a secondary school.") + (license license:lppl1.3+))) + (define-public texlive-logreq (package (name "texlive-logreq") |