diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-16 15:18:04 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:12:05 +0200 |
commit | b7d10431866c16cc88e69f1258e740c7a3164a4b (patch) | |
tree | 10d59a857ac2de97eca7619f855fce361e65d2bc /gnu | |
parent | 8294ab6d28fc4b5aef748e0b984dd94a21cc5c6a (diff) | |
download | guix-b7d10431866c16cc88e69f1258e740c7a3164a4b.tar.gz |
gnu: texlive-zapfding: Refresh package definition.
* gnu/packages/tex.scm (texlive-zapfding): Remove SIMPLE-TEXLIVE-PACKAGE call.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2fa7300880..e02996dc25 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7410,19 +7410,21 @@ Adobe's basic set.") (define-public texlive-zapfding (package - (inherit (simple-texlive-package - "texlive-zapfding" - (list "/dvips/zapfding/" - "/fonts/afm/adobe/zapfding/" - "/fonts/afm/urw/zapfding/" - "/fonts/tfm/adobe/zapfding/" - "/fonts/tfm/urw35vf/zapfding/" - "/fonts/type1/urw/zapfding/" - "/fonts/map/dvips/zapfding/" - "/tex/latex/zapfding/") - (base32 - "17mls8wilz9api9ivsbcczpiqp1f39qy8wa6ajssi8zhnc5lq7zn") - #:trivial? #t)) + (name "texlive-zapfding") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "dvips/zapfding/" + "fonts/afm/adobe/zapfding/" + "fonts/afm/urw/zapfding/" + "fonts/map/dvips/zapfding/" + "fonts/tfm/adobe/zapfding/" + "fonts/tfm/urw35vf/zapfding/" + "fonts/type1/urw/zapfding/" + "tex/latex/zapfding/") + (base32 + "17mls8wilz9api9ivsbcczpiqp1f39qy8wa6ajssi8zhnc5lq7zn"))) + (build-system texlive-build-system) (home-page "https://ctan.org/pkg/urw-base35") (synopsis "URW Base 35 font pack for LaTeX") (description |