diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 13:56:23 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 14:46:23 +0200 |
commit | 38ccc2eba5d03528fc107a5efdaad6791a91f663 (patch) | |
tree | 27dc5a8722ba44b4bafe31dcf71b941676e79065 /gnu/packages | |
parent | 61064921b64ba889ffe24089165f35d1e3178505 (diff) | |
download | guix-38ccc2eba5d03528fc107a5efdaad6791a91f663.tar.gz |
gnu: Add texlive-psizzl.
* gnu/packages/tex.scm (texlive-psizzl): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9dac89b43b..4862fda255 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7849,6 +7849,28 @@ elements such as keywords, identifiers, and comments.") algorithms in a natural manner.") (license license:lppl))) +(define-public texlive-psizzl + (package + (name "texlive-psizzl") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/otherformats/psizzl/base/" + "source/psizzl/base/" "tex/psizzl/base/" + "tex/psizzl/config/") + (base32 + "07h8raq2k80ycvsaaaxaaczwwnhkxdbnvnr52mihr8dyih5s7jns"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/psizzl") + (synopsis "TeX format for physics papers") + (description + "PSIZZL is a TeX format for physics papers written at SLAC and used at +several other places. It dates from rather early in the development of TeX82; +as a result, some of the descriptions of limitations look rather quaint to +modern eyes.") + (license license:lppl))) + (define-public texlive-pythonhighlight (package (name "texlive-pythonhighlight") |