diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:48:03 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:33 +0200 |
commit | 0d4942aa3ee87180012d07eca3f47d64617cdd91 (patch) | |
tree | 9c385afe543a773a0f8972ea07b87b27cec1f39a /gnu/packages | |
parent | 7b5140e8745f2e49acf1c17ffa7105fa75b38387 (diff) | |
download | guix-0d4942aa3ee87180012d07eca3f47d64617cdd91.tar.gz |
gnu: Add texlive-ogham.
* gnu/packages/tex.scm (texlive-ogham): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e95edf89ac..a7e47012ca 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -20147,6 +20147,28 @@ mid-document.") ;; without limitation." (license (license:fsf-free "file://doc/fonts/ocr-b-outline/README")))) +(define-public texlive-ogham + (package + (name "texlive-ogham") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/ogham/" + "fonts/source/public/ogham/" + "fonts/tfm/public/ogham/") + (base32 + "0lk419jbg3ahgcrmffl7snbgv521fccjpsx5i0nq55cs9vrsnav1"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/ogham") + (synopsis "Fonts for typesetting Ogham script") + (description + "The font provides the Ogham alphabet, which is found on a number of +Irish and Pictish carvings dating from the 4th century AD. The font is +distributed as Metafont source.") + (license license:public-domain))) + (define-public texlive-omega (package (name "texlive-omega") |