diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:11:04 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:34 +0200 |
commit | 68fba23584dc0c42efa95b9541e26a6d8766f1bb (patch) | |
tree | a2b8735e1f17bb6b0d790ff85a6a083e32df2ed2 /gnu | |
parent | 428c0277aa9462193598fb11bb042f64d7e4f77f (diff) | |
download | guix-68fba23584dc0c42efa95b9541e26a6d8766f1bb.tar guix-68fba23584dc0c42efa95b9541e26a6d8766f1bb.tar.gz |
gnu: Add texlive-piton.
* gnu/packages/tex.scm (texlive-piton): New variable.
Diffstat (limited to 'gnu')
-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 ee08697703..54ecaae881 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11877,6 +11877,26 @@ output.") (define-deprecated-package texlive-latex-pgf texlive-pgf) +(define-public texlive-piton + (package + (name "texlive-piton") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/piton/" + "source/lualatex/piton/" + "tex/lualatex/piton/") + (base32 + "123ir1hnla5klkvb13qw1mkfnpbwk61lxli0851qf33g72c8qc4r"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/piton") + (synopsis "Typeset Python listings with LPEG") + (description + "This package uses the Lua library LPEG to typeset and highlight Python +listings.") + (license license:lppl1.3+))) + (define-public texlive-koma-script (package (name "texlive-koma-script") |