diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-05 23:16:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:12:54 +0200 |
commit | 889327e4fbfe878b7c0efb7544e5eb2b80476163 (patch) | |
tree | b9fe3f1882df09a42dc3a477f5f64ea8f23383d9 | |
parent | fe9081b27d82585d9b54e0175bbbed844aced558 (diff) | |
download | guix-889327e4fbfe878b7c0efb7544e5eb2b80476163.tar guix-889327e4fbfe878b7c0efb7544e5eb2b80476163.tar.gz |
gnu: texlive-context: Create formats.
* gnu/packages/tex.scm (texlive-context)[arguments]: Create CONT-EN, CONT-FR,
CONT-IT, CONT-NL, CONT-RO formats.
-rw-r--r-- | gnu/packages/tex.scm | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d534e578d9..a8d6d0c69b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10424,17 +10424,21 @@ a counter to be reset when another is incremented) and "1sbh4fnxxymh7lmvldp1ll8p6adcf3jhvqf47jvrayqr91zp4hh9"))) (outputs '("out" "doc")) (build-system texlive-build-system) - (propagated-inputs (list texlive-amsfonts - texlive-lm - texlive-lm-math - texlive-luatex - texlive-manfnt-font - texlive-metapost - texlive-mflogo-font - texlive-mptopdf - texlive-pdftex - texlive-stmaryrd - texlive-xetex)) + (arguments + (list #:create-formats + #~(list "cont-en" "cont-fr" "cont-it" "cont-nl" "cont-ro"))) + (propagated-inputs + (list texlive-amsfonts + texlive-lm + texlive-lm-math + texlive-luatex + texlive-manfnt-font + texlive-metapost + texlive-mflogo-font + texlive-mptopdf + texlive-pdftex + texlive-stmaryrd + texlive-xetex)) (home-page "https://ctan.org/pkg/context") (synopsis "Full featured, parameter driven macro package for TeX") (description "ConTeXt is a full featured, parameter driven macro package, |