diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-10-08 17:35:22 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-10-08 18:32:42 +0200 |
commit | 46e78707a3d72d1fd08432cba8886415c79ebacc (patch) | |
tree | 8dd93313f50a21e521c0492ec2be3b8d46a23d03 /gnu/packages/fonts.scm | |
parent | 1d6417340d6c6a80e24b9cd7e9c357b87c8da309 (diff) | |
download | guix-46e78707a3d72d1fd08432cba8886415c79ebacc.tar guix-46e78707a3d72d1fd08432cba8886415c79ebacc.tar.gz |
gnu: Add font-sil-charis.
* gnu/packages/fonts.scm (font-sil-charis): New variable.
Diffstat (limited to 'gnu/packages/fonts.scm')
-rw-r--r-- | gnu/packages/fonts.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 7fdcda4eee..1195695d7a 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1328,3 +1328,27 @@ produce readable, high-quality publications. The font comes with regular and italics shapes. This package provides only TrueType files (TTF).") (home-page "https://software.sil.org/gentium/") (license license:silofl1.1))) + +(define-public font-sil-charis + (package + (name "font-sil-charis") + (version "5.000") + (source (origin + (method url-fetch) + (uri (string-append + "https://software.sil.org/downloads/r/charis/CharisSIL-" + version ".zip")) + (sha256 + (base32 + "1zcvw37f1a7gkml3yfm6hxh93844llm7xj4w52600qq3ndrm8gjy")))) + ;; As for Gentium (see above), the TTF files are considered source. + (build-system font-build-system) + (synopsis "Serif font for the Cyrillic and Latin alphabets") + (description + "Charis SIL is a Unicode-based font family that supports the wide range +of languages that use the Latin and Cyrillic scripts. It is specially +designed to make long texts pleasant and easy to read, even in less than ideal +reproduction and display environments. This package provides only TrueType +files (TTF).") + (home-page "https://software.sil.org/charis/") + (license license:silofl1.1))) |