diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 19:03:30 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:30 +0200 |
commit | 363cd9b71990ffedee32630afaea5970ddcde8ee (patch) | |
tree | ecff10291898014b2b6959e31abeb0306cc53625 | |
parent | 00dec6039b1f7deffca6ba409b8b639fdc43144b (diff) | |
download | guix-363cd9b71990ffedee32630afaea5970ddcde8ee.tar.gz guix-363cd9b71990ffedee32630afaea5970ddcde8ee.zip |
gnu: texlive-bera: Refresh package definition.
* gnu/packages/tex.scm (texlive-bera): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-GRAPHICS.
-rw-r--r-- | gnu/packages/tex.scm | 41 |
1 files changed, 23 insertions, 18 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index fd9d58486f..98ddbcd9b3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11142,25 +11142,30 @@ created by the Greek Font Society).") (define-public texlive-bera (package - (inherit (simple-texlive-package - "texlive-bera" - (list "/doc/fonts/bera/" - "/fonts/afm/public/bera/" - "/fonts/map/dvips/bera/" - "/fonts/tfm/public/bera/" - "/fonts/type1/public/bera/" - "/fonts/vf/public/bera/" - "/tex/latex/bera/") - (base32 - "1pkmhhr6ah44xhipjr7nianv03hr4w4bn45xcvp264yw6ymqzqwr") - #:trivial? #t)) - (home-page "https://www.ctan.org/pkg/bera") + (name "texlive-bera") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/bera/" + "fonts/afm/public/bera/" + "fonts/map/dvips/bera/" + "fonts/tfm/public/bera/" + "fonts/type1/public/bera/" + "fonts/vf/public/bera/" + "tex/latex/bera/") + (base32 + "1pkmhhr6ah44xhipjr7nianv03hr4w4bn45xcvp264yw6ymqzqwr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-graphics)) + (home-page "https://ctan.org/pkg/bera") (synopsis "Bera fonts") - (description "The @code{bera} package contains the Bera Type 1 -fonts and files to use the fonts with LaTeX. Bera is a set of three -font families: Bera Serif (a slab-serif Roman), Bera Sans (a Frutiger -descendant) and Bera Mono (monospaced/typewriter). The Bera family is -a repackaging, for use with TeX, of the Bitstream Vera family.") + (description "The @code{bera} package contains the Bera Type 1 fonts and +files to use the fonts with LaTeX. Bera is a set of three font families: Bera +Serif (a slab-serif Roman), Bera Sans (a Frutiger descendant) and Bera +Mono (monospaced/typewriter). The Bera family is a repackaging, for use with +TeX, of the Bitstream Vera family.") (license license:silofl1.1))) (define-public texlive-fourier |