diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:46:05 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:42:20 +0200 |
commit | 5ee3da33ce46b84ef1cfca0dabd6a98fa284e61c (patch) | |
tree | 6d0b9fc232abaa1970e8a9b4205c5f321818debb | |
parent | ae4d3bd5bbc7f677202a49f46c9c4c8f9e14fc9b (diff) |
gnu: Add texlive-sclang-prettifier.
* gnu/packages/tex.scm (texlive-sclang-prettifier): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 82acee16e1..f25fe97770 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5971,6 +5971,27 @@ class which allows cutting and pasting most of an article to a poster without any editing (save reducing the size).") (license license:lppl))) +(define-public texlive-sclang-prettifier + (package + (name "texlive-sclang-prettifier") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/sclang-prettifier/" + "source/latex/sclang-prettifier/" + "tex/latex/sclang-prettifier/") + (base32 + "0pjqhwnz7lihl4yqxr0xgfdxnsj2p7k10vj5y7smjyv0p93lqvaw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sclang-prettifier") + (synopsis "Pretty-printing SuperCollider source code") + (description + "Built on top of the @code{listings} package, the package allows +effortless pretty-printing of SuperCollider source code in documents typeset +with LaTeX and friends.") + (license license:lppl1.3+))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |