diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:03:30 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:18 +0200 |
commit | 74cde2da850a9b230883634d177a7417c8b0afe9 (patch) | |
tree | 9f2957c75c3d3929f0cd899eb9ff854cf252215e | |
parent | 953dfdc3a8bcb7970266a895263caf928cbcffe0 (diff) | |
download | guix-74cde2da850a9b230883634d177a7417c8b0afe9.tar.gz |
gnu: Add texlive-uestcthesis.
* gnu/packages/tex.scm (texlive-uestcthesis): New variable.
-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 126826e139..3959e94c6b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -30621,6 +30621,26 @@ which is available on the faculte's intranet. The class file documentation is in French, the language of the typical user at the Universite de Sherbrooke.") (license license:lppl1.3c))) +(define-public texlive-uestcthesis + (package + (name "texlive-uestcthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/uestcthesis/" + "doc/latex/uestcthesis/" + "tex/latex/uestcthesis/") + (base32 + "1gqa6yyj3nq75vfjxrcn0pxc9gmgdaf7mdhp5sf3hy3br9ix8qgw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/uestcthesis") + (synopsis "Thesis class for UESTC") + (description + "The class is for typesetting a thesis at the University of Electronic +Science and Technology of China.") + (license license:lppl1.3+))) + (define-public texlive-ulqda (package (name "texlive-ulqda") |