diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:18:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:26 +0200 |
commit | d1a499a172efc5786ffc22862c56aed0312efee5 (patch) | |
tree | 06bb26c422e21ffe8060ad6bbb8c0cf39f18e209 | |
parent | 08f6bd7117181dfec59d0421a0d31c59953b4ea1 (diff) |
gnu: Add texlive-uwthesis.
* gnu/packages/tex.scm (texlive-uwthesis): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 758a3435e0..46a2e71819 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -31675,6 +31675,22 @@ and uses the Calibri fonts by default. The class works with XeLaTeX and LuaLaTeX.") (license license:lppl1.3+))) +(define-public texlive-uwthesis + (package + (name "texlive-uwthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/uwthesis/" "tex/latex/uwthesis/") + (base32 + "0wcxpvr86556gxbcprwcv6ipdq3flyfwbcmjkxhy6x6220sfwp56"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/uwthesis") + (synopsis "University of Washington thesis class") + (description "This is a thesis class for the University of Washington.") + (license license:asl2.0))) + (define-public texlive-vak (package (name "texlive-vak") |