diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:43:36 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:48:40 +0200 |
commit | 576a337974ea4f764aaf4fa49b7ecf316735125e (patch) | |
tree | 8ba45dcc60d64e442944e177c1c514b96bb7134c /gnu/packages/tex.scm | |
parent | 59a20cd263f642d3af70aaa5ac28019b05768455 (diff) | |
download | guix-576a337974ea4f764aaf4fa49b7ecf316735125e.tar.gz guix-576a337974ea4f764aaf4fa49b7ecf316735125e.zip |
gnu: Add texlive-songproj.
* gnu/packages/tex.scm (texlive-songproj): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index de4e14809e..8b53487781 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12377,6 +12377,31 @@ attempts to handle songs in multiple keys, as well as songs in multiple languages.") (license license:lgpl2.1))) +(define-public texlive-songproj + (package + (name "texlive-songproj") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/songproj/" + "source/latex/songproj/" + "tex/latex/songproj/") + (base32 + "044b9zbm2l1w8flnb5vx99590m65d1nxgys2dj3w79kkbmnhc7jy"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/songproj") + (synopsis "Generate Beamer slideshows with song lyrics") + (description + "This package, together with the Beamer class, is used to generate +slideshows with song lyrics. This is typically used in religious services in +churches equipped with a projector, for which this package has been written, +but it can be useful for any type of singing assembly. It provides +environments to describe a song in a natural way, and formatting it into +slides with overlays. The package comes with an additional Python script that +can be used to convert plain-text song lyrics to the expected LaTeX markup.") + (license license:bsd-3))) + (define-public texlive-spalign (package (name "texlive-spalign") |