diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 00:14:10 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:15 +0200 |
commit | 51a6a326c7e6d06970f3fbb4294777e025891109 (patch) | |
tree | b563ec48ee75a3ace93cf22ca52de8de3b2965c6 | |
parent | 849074f7938d46e323be12d6f6519939b791d40f (diff) | |
download | guix-51a6a326c7e6d06970f3fbb4294777e025891109.tar.gz guix-51a6a326c7e6d06970f3fbb4294777e025891109.zip |
gnu: texlive-sourceserifpro: Refresh package definition.
* gnu/packages/tex.scm (texlive-sourceserifpro): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-FONTAXES, TEXLIVE-IFTEX, TEXLIVE-MWEIGHTS, TEXLIVE-XKEYVAL.
-rw-r--r-- | gnu/packages/tex.scm | 43 |
1 files changed, 26 insertions, 17 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f7ecc6a9ac..932b5aa89d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12730,25 +12730,34 @@ use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).") (define-public texlive-sourceserifpro (package - (inherit (simple-texlive-package - "texlive-sourceserifpro" - '("/doc/latex/sourceserifpro/" - "/fonts/enc/dvips/sourceserifpro/" - "/fonts/map/dvips/sourceserifpro/" - "/fonts/opentype/adobe/sourceserifpro/" - ;; ^ see comment on texlive-sourcesanspro - "/fonts/tfm/adobe/sourceserifpro/" - "/fonts/type1/adobe/sourceserifpro/" - "/fonts/vf/adobe/sourceserifpro/" - "/tex/latex/sourceserifpro/") - (base32 - "18xxncg8ybv86r46zq5mvgkrfnvlhx93n55fy8nkk8vdmminrh8w") - #:trivial? #t)) + (name "texlive-sourceserifpro") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/sourceserifpro/" + "fonts/enc/dvips/sourceserifpro/" + "fonts/map/dvips/sourceserifpro/" + "fonts/opentype/adobe/sourceserifpro/" + ;; ^ See comment in `texlive-sourcesanspro'. + "fonts/tfm/adobe/sourceserifpro/" + "fonts/type1/adobe/sourceserifpro/" + "fonts/vf/adobe/sourceserifpro/" + "tex/latex/sourceserifpro/") + (base32 + "18xxncg8ybv86r46zq5mvgkrfnvlhx93n55fy8nkk8vdmminrh8w"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-fontaxes + texlive-iftex + texlive-mweights + texlive-xkeyval)) (home-page "https://ctan.org/pkg/sourceserifpro") (synopsis "Use Source Serif Pro with TeX(-alike) systems") - (description "This package provides the Source Serif Pro font family from -Adobe in both Adobe Type 1 and OpenType formats, plus macros supporting the -use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).") + (description + "This package provides the Source Serif Pro font family from Adobe in +both Adobe Type 1 and OpenType formats, plus macros supporting the use of the +fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).") (license (list license:lppl1.3+ license:silofl1.1)))) (define-public texlive-sourcecodepro |