mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: texlive-cbfonts: Fix build.
* gnu/packages/tex.scm (texlive-cbfonts)[arguments]<#:phases>: Skip failing GENERATE-FONT-METRICS phase. [native-inputs]: Add TEXLIVE-CM, TEXLIVE-METAFONT.
This commit is contained in:
parent
8aafda0abd
commit
030d490d35
1 changed files with 7 additions and 1 deletions
|
@ -1089,8 +1089,14 @@ (define-public texlive-cbfonts ;71 MiB of greek fonts
|
|||
(base32
|
||||
"0l0dpgvngah227snzk6j5hf3kxs5cz5jvlpkv8pbapw6jx084np6")))
|
||||
(outputs '("out" "doc"))
|
||||
;; FIXME: Font metrics cannot be generated due to "bad pos" errors.
|
||||
(build-system texlive-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; FIXME: Font metrics cannot be generated due to "bad pos"
|
||||
;; errors.
|
||||
(delete 'generate-font-metrics))))
|
||||
(native-inputs (list texlive-cm texlive-metafont))
|
||||
(propagated-inputs (list texlive-cbfonts-fd))
|
||||
(home-page "https://ctan.org/pkg/cbgreek-complete")
|
||||
(synopsis "Complete set of Greek fonts")
|
||||
|
|
Loading…
Reference in a new issue