2019-05-13 02:55:32 +01:00
|
|
|
|
{ lib, fetchzip }:
|
2011-05-28 20:01:59 +01:00
|
|
|
|
|
2017-08-11 14:35:52 +01:00
|
|
|
|
let
|
2022-02-21 13:35:24 +00:00
|
|
|
|
version = "6.101";
|
2017-08-11 14:35:52 +01:00
|
|
|
|
in fetchzip rec {
|
|
|
|
|
name = "gentium-${version}";
|
2015-06-11 23:17:53 +01:00
|
|
|
|
|
2017-08-11 14:35:52 +01:00
|
|
|
|
url = "http://software.sil.org/downloads/r/gentium/GentiumPlus-${version}.zip";
|
2011-05-28 20:01:59 +01:00
|
|
|
|
|
2017-08-11 14:35:52 +01:00
|
|
|
|
postFetch = ''
|
|
|
|
|
mkdir -p $out/share/{doc,fonts}
|
|
|
|
|
unzip -l $downloadedFile
|
2021-07-01 09:48:39 +01:00
|
|
|
|
unzip -j $downloadedFile \*.ttf \
|
|
|
|
|
-d $out/share/fonts/truetype
|
|
|
|
|
unzip -j $downloadedFile \
|
|
|
|
|
\*/FONTLOG.txt \
|
|
|
|
|
\*/README.txt \
|
|
|
|
|
-d $out/share/doc/${name}
|
|
|
|
|
unzip -j $downloadedFile \
|
|
|
|
|
\*/documentation/\*.html \
|
|
|
|
|
\*/documentation/\*.txt \
|
|
|
|
|
-x \*/documentation/source/\* \
|
|
|
|
|
-d $out/share/doc/${name}/documentation
|
2015-06-11 23:17:53 +01:00
|
|
|
|
'';
|
2011-05-28 20:01:59 +01:00
|
|
|
|
|
2022-02-21 13:35:24 +00:00
|
|
|
|
sha256 = "sha256-+T5aUlqQYDWRp4/4AZzsREHgjAnOeUB6qn1GAI0A5hE=";
|
2017-08-11 14:35:52 +01:00
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://software.sil.org/gentium/";
|
2015-06-11 23:17:53 +01:00
|
|
|
|
description = "A high-quality typeface family for Latin, Cyrillic, and Greek";
|
2016-08-03 07:31:56 +01:00
|
|
|
|
longDescription = ''
|
|
|
|
|
Gentium is a typeface family designed to enable the diverse ethnic groups
|
|
|
|
|
around the world who use the Latin, Cyrillic and Greek scripts to produce
|
|
|
|
|
readable, high-quality publications. It supports a wide range of Latin and
|
|
|
|
|
Cyrillic-based alphabets.
|
|
|
|
|
|
|
|
|
|
The design is intended to be highly readable, reasonably compact, and
|
|
|
|
|
visually attractive. The additional ‘extended’ Latin letters are designed
|
|
|
|
|
to naturally harmonize with the traditional 26 ones. Diacritics are
|
|
|
|
|
treated with careful thought and attention to their use. Gentium Plus also
|
|
|
|
|
supports both polytonic and monotonic Greek.
|
|
|
|
|
|
|
|
|
|
This package contains the regular and italic styles for the Gentium Plus
|
|
|
|
|
font family, along with documentation.
|
|
|
|
|
'';
|
2018-01-05 19:42:46 +00:00
|
|
|
|
downloadPage = "https://software.sil.org/gentium/download/";
|
2015-06-11 23:17:53 +01:00
|
|
|
|
maintainers = with maintainers; [ raskin rycee ];
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
|
platforms = platforms.all;
|
2011-05-28 20:01:59 +01:00
|
|
|
|
};
|
2015-06-11 23:17:53 +01:00
|
|
|
|
}
|