diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:47:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:36 +0200 |
commit | e1fe3c22aa4abc9a941106408eb174492eb98b7c (patch) | |
tree | 9c70fec33c72bb7fe98a8c3a9588ca4e4df2231b /gnu | |
parent | 2f9046b3c7c432e5524b7b383b134f18bdb78370 (diff) | |
download | guix-e1fe3c22aa4abc9a941106408eb174492eb98b7c.tar.gz |
gnu: Add texlive-hu-berlin-bundle.
* gnu/packages/tex.scm (texlive-hu-berlin-bundle): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e2738a76e0..78c10d8850 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16574,6 +16574,27 @@ the graduation thesis at the University of Zagreb) and sample thesis documents are included.") (license license:lppl))) +(define-public texlive-hu-berlin-bundle + (package + (name "texlive-hu-berlin-bundle") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/hu-berlin-bundle/" + "source/lualatex/hu-berlin-bundle/" + "tex/lualatex/hu-berlin-bundle/") + (base32 + "05cwh97w954gz8dr56a2n06s312gg8r0zy9zxj6hv86z019wiq85"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hu-berlin-bundle") + (synopsis "LaTeX classes for the Humboldt-Universitat zu Berlin") + (description + "This package provides files according to the corporate design of the +Humboldt-Universitat zu Berlin. This is not an official package by the +university itself, and not officially approved by it.") + (license (list license:lppl1.3c license:gpl2 license:bsd-3)))) + (define-public texlive-huaz (package (name "texlive-huaz") |