diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:03:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:17 +0200 |
commit | 744b085b2f3f4b554ea1315f81885c9b1fd6a500 (patch) | |
tree | 81744264bbf7fbd017e5c906e9f6726ec44cd8f4 /gnu | |
parent | cb63e9fe6c5dff3793015afe741fc3dffe8bf93f (diff) | |
download | guix-744b085b2f3f4b554ea1315f81885c9b1fd6a500.tar.gz |
gnu: Add texlive-ucthesis.
* gnu/packages/tex.scm (texlive-ucthesis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index cbe82e12de..af2b8cd741 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -30576,6 +30576,25 @@ the @acronym{ABNT, Brazilian Technical Standards Association} standards and the @acronym{UCS, University of Caxias do Sul} specifications.") (license license:lppl1.3c))) +(define-public texlive-ucthesis + (package + (name "texlive-ucthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ucthesis/" "tex/latex/ucthesis/") + (base32 + "19s6s4wxq494shi2pgrdyaz9qx52zma62czd92mrkjp2diim1197"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ucthesis") + (synopsis "University of California thesis format") + (description + "This package provides a modified version of the standard LaTeX report +style that is accepted for use with University of California PhD dissertations +and masters theses.") + (license license:lppl1.3+))) + (define-public texlive-ulqda (package (name "texlive-ulqda") |