diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 23:57:09 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:48 +0200 |
commit | 500e9d9280afe5a3cb478c3936e2fcc904eea73c (patch) | |
tree | cf298ca7e75f481d4fb1ac8b318cf197592eff31 | |
parent | 8c83a2774c21a92f031e1e28605561214ccce0f7 (diff) | |
download | guix-500e9d9280afe5a3cb478c3936e2fcc904eea73c.tar guix-500e9d9280afe5a3cb478c3936e2fcc904eea73c.tar.gz |
gnu: Add texlive-hausarbeit-jura.
* gnu/packages/tex.scm (texlive-hausarbeit-jura): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c831f957af..c48a3b78e1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -31536,6 +31536,29 @@ writing documents with bibliographies. The author has since developed the quotes even when that letter wears a standard accent") (license license:gpl3+))) +(define-public texlive-hausarbeit-jura + (package + (name "texlive-hausarbeit-jura") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hausarbeit-jura/" + "source/latex/hausarbeit-jura/" + "tex/latex/hausarbeit-jura/") + (base32 + "14raizfrrfnwdgwaq9irxdkg2mg280csjcirsxjq4rpdwqg2nkwh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hausarbeit-jura") + (synopsis + "Class for writing @emph{juristische Hausarbeiten} at German Universities") + (description + "The class was developed for use by students writing legal +essays (@emph{juristische Hausarbeit}) at German Universities. It is based on +@code{jurabook} and @code{jurabib} and makes it easy for LaTeX beginners to +get a correct and nicely formatted paper.") + (license license:lppl1.3+))) + (define-public texlive-logreq (package (name "texlive-logreq") |