diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:30:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 09:48:35 +0200 |
commit | 585a7d56f1db3a4f8f6a5a4bc495cfc806285260 (patch) | |
tree | 596de7c57b21ec4712e79e783a2e2f1db4d1428e | |
parent | 966680d525ce1f9a38ed9767564c7d7876248b90 (diff) | |
download | guix-585a7d56f1db3a4f8f6a5a4bc495cfc806285260.tar.gz guix-585a7d56f1db3a4f8f6a5a4bc495cfc806285260.zip |
gnu: Add texlive-figbas.
* gnu/packages/tex.scm (texlive-figbas): 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 6c326e6bcf..adc3115b79 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6101,6 +6101,30 @@ exercises and the activities.") It can make it easy to write theses both in Chinese and English.") (license license:lppl1.3c))) +(define-public texlive-figbas + (package + (name "texlive-figbas") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/figbas/" + "fonts/afm/public/figbas/" + "fonts/map/dvips/figbas/" + "fonts/tfm/public/figbas/" + "fonts/type1/public/figbas/") + (base32 + "07dc19989sx968hbn3h2m1bbplp8zqh1yj9v92mcp54876rk8bbp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/figbas") + (synopsis "Mini-fonts for figured-bass notation in music") + (description + "This package consists of three mini-fonts (and associated metrics) of +conventional ligatures for the figured-bass notations 2+, 4+, 5+, 6+ and 9+ in +music manuscripts. The fonts are usable with Computer Modern Roman and Sans, +and Palatino/Palladio, respectively.") + (license license:lppl))) + (define-public texlive-filecontentsdef (package (name "texlive-filecontentsdef") |