diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:42:11 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:48:40 +0200 |
commit | 653eca9fd1dbc80a00718382333c9ad5a82b67d6 (patch) | |
tree | 9cff8c796177bc38313bd9731eb9ce60d00d00cb | |
parent | a1b7a1a098a98b2221bf3fb118eac4f7c2107e5d (diff) | |
download | guix-653eca9fd1dbc80a00718382333c9ad5a82b67d6.tar.gz |
gnu: Add texlive-pmxchords.
* gnu/packages/tex.scm (texlive-pmxchords): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 773822624e..3658c64a8d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11193,6 +11193,30 @@ your score. @command{scor2prt} is an auxiliary program that makes parts from a score.") (license license:gpl2))) +(define-public texlive-pmxchords + (package + (name "texlive-pmxchords") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/pmxchords.1" + "doc/man/man1/pmxchords.man1.pdf" + "doc/pmxchords/" "scripts/pmxchords/" + "tex/generic/pmxchords/") + (base32 + "01dlic0b0fdm41982mqj3xpin0wksmsyz4h53vdckkz2ayyagagk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "pmxchords.lua"))) + (home-page "https://ctan.org/pkg/pmxchords") + (synopsis "Produce chord information to go with @command{pmx} output") + (description + "The bundle supplements @command{pmx}, providing the means of typesetting +chords above the notes of a score. The bundle contains: macros for typing the +chords; a Lua script to transpose chord macros to the required key signature; +and support scripts for common requirements.") + (license license:gpl2))) + (define-public texlive-poemscol (package (name "texlive-poemscol") |