diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:44:51 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:48:41 +0200 |
commit | 36a25b75a192bea373b25cc0e4f5e309b6f9a808 (patch) | |
tree | dd313b83cb64eaae9de356093c3f9a12e7d414cc /gnu | |
parent | 2adb68051528398bfd75f1d4716ca656550183af (diff) | |
download | guix-36a25b75a192bea373b25cc0e4f5e309b6f9a808.tar.gz guix-36a25b75a192bea373b25cc0e4f5e309b6f9a808.zip |
gnu: Add texlive-xpiano.
* gnu/packages/tex.scm (texlive-xpiano): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3c07868f36..6176ecc891 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -27523,6 +27523,29 @@ names, as well as character data, may use any characters allowed in XML, using UTF-8 or a suitable 8-bit encoding.") (license license:lppl1.0+))) ;per xmltex/base/readme.txt +(define-public texlive-xpiano + (package + (name "texlive-xpiano") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/xpiano/" "source/latex/xpiano/" + "tex/latex/xpiano/") + (base32 + "1nk8v0d641cr4mg4l2k0fv7pl9b26nyi30k4px5wajwm976f042p"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/xpiano") + (synopsis "Extension of the @code{piano} package") + (description + "This package provides macros for typesetting virtual keyboards limited +to two octaves for showing notes represented by a colored circle. Optionally, +the number used for pitch analysis can be shown. It is an extension of +@file{piano.sty}. It features extended syntax and several options, like +setting the color, adding numbers for pitch analysis, one or two octaves, and +others.") + (license license:lppl1.3+))) + (define-public texlive-xpinyin (package (name "texlive-xpinyin") |