diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:23:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:40 +0200 |
commit | 19d9f989491243e47a0ccd977a4673f488aa39d5 (patch) | |
tree | 5fe72abacbe562f92e2bf55ca094c4ce1209a683 | |
parent | 7e96dbef371d33971dd31431ad0a5d494c6cb0fb (diff) | |
download | guix-19d9f989491243e47a0ccd977a4673f488aa39d5.tar.gz guix-19d9f989491243e47a0ccd977a4673f488aa39d5.zip |
gnu: Add texlive-realhats.
* gnu/packages/tex.scm (texlive-realhats): New variable.
-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 4bf5bbccbe..48bc3e24f0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3676,6 +3676,25 @@ to draw random walks with a given number of steps. Lengths and angles of the steps can be customized in various ways.") (license license:lppl1.3c))) +(define-public texlive-realhats + (package + (name "texlive-realhats") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/realhats/" + "source/latex/realhats/" + "tex/latex/realhats/hats/") + (base32 + "0y9s12kzzrrmzkx57yqy4mzx50bcsv972825nnlgcsgkxcd8wv51"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/realhats") + (synopsis "Put real hats on symbols instead of @samp{^}") + (description + "This LaTeX package makes @code{\\hat} put real hats on symbols.") + (license license:expat))) + (define-public texlive-amiri (package (name "texlive-amiri") |