From af02797316b76cfa598f5573d1f88ad71d9187c7 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:45:28 +0200 Subject: [PATCH] gnu: Add texlive-casyl. * gnu/packages/tex.scm (texlive-casyl): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6876249e7d..0628a35b34 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -75329,6 +75329,27 @@ (define-public texlive-cases ;; provided that this notice is left intact. (license (license:fsf-free "file://doc/latex/cases/README")))) +(define-public texlive-casyl + (package + (name "texlive-casyl") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/casyl/" + "fonts/source/public/casyl/" + "fonts/tfm/public/casyl/" "tex/latex/casyl/") + (base32 + "1dxl04m0inilv4jhq4w6haw0g7hd3svyhy3g9x946xydf7zrfjg6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/casyl") + (synopsis "Typeset Cree/Inuktitut in Canadian Aboriginal syllabics") + (description + "The bundle constitutes a font (as Metafont source) and LaTeX macros for its +use within a document.") + (license license:public-domain))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar