diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 13:18:02 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 13:37:04 +0200 |
commit | 1e695b8750c55d4e14983e9f5c80acb3644e80cb (patch) | |
tree | 1c9008c1582df50ed001b9308a19b0acf6ff5a64 | |
parent | 1257f1949dca54040ab4d42c079ef8fe403696e5 (diff) |
gnu: Add texlive-c90.
* gnu/packages/tex.scm (texlive-c90): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c35b1e355d..e4e23558e5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2917,6 +2917,23 @@ a packet or in memory.") in Python, C and Pascal. Program source files may also be input.") (license license:public-domain))) +(define-public texlive-c90 + (package + (name "texlive-c90") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/enc/c90/" "fonts/enc/dvips/c90/" + "source/fonts/enc/c90/") + (base32 + "0g4rwimlqqzbbs8ar15nsf8qcr8bbyjacmklbgv4pmsls5ka9n3n"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/c90") + (synopsis "C90 font encoding for Thai") + (description "This package provides C90 font encoding for Thai.") + (license license:gpl2+))) + (define-public texlive-calculation (package (name "texlive-calculation") |