2015-06-11 22:17:53 +00:00
|
|
|
|
{ stdenv, fetchzip }:
|
2011-05-28 19:01:59 +00:00
|
|
|
|
|
2017-08-11 13:35:52 +00:00
|
|
|
|
let
|
2016-08-03 06:31:56 +00:00
|
|
|
|
version = "5.000";
|
2017-08-11 13:35:52 +00:00
|
|
|
|
in fetchzip rec {
|
|
|
|
|
name = "gentium-${version}";
|
2015-06-11 22:17:53 +00:00
|
|
|
|
|
2017-08-11 13:35:52 +00:00
|
|
|
|
url = "http://software.sil.org/downloads/r/gentium/GentiumPlus-${version}.zip";
|
2011-05-28 19:01:59 +00:00
|
|
|
|
|
2017-08-11 13:35:52 +00:00
|
|
|
|
postFetch = ''
|
|
|
|
|
mkdir -p $out/share/{doc,fonts}
|
|
|
|
|
unzip -l $downloadedFile
|
|
|
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
|
|
|
|
unzip -j $downloadedFile \*/FONTLOG.txt \*/GENTIUM-FAQ.txt \*/README.txt -d $out/share/doc/${name}
|
|
|
|
|
unzip -j $downloadedFile \*/documentation/\* -d $out/share/doc/${name}/documentation
|
2015-06-11 22:17:53 +00:00
|
|
|
|
'';
|
2011-05-28 19:01:59 +00:00
|
|
|
|
|
2017-08-11 13:35:52 +00:00
|
|
|
|
sha256 = "1qr2wjdmm93167b0w9cidlf3wwsyjx4838ja9jmm4jkyian5whhp";
|
|
|
|
|
|
2015-06-11 22:17:53 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
|
homepage = https://software.sil.org/gentium/;
|
2015-06-11 22:17:53 +00:00
|
|
|
|
description = "A high-quality typeface family for Latin, Cyrillic, and Greek";
|
2016-08-03 06:31:56 +00: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 22:17:53 +00:00
|
|
|
|
maintainers = with maintainers; [ raskin rycee ];
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
|
platforms = platforms.all;
|
2011-05-28 19:01:59 +00:00
|
|
|
|
};
|
2015-06-11 22:17:53 +00:00
|
|
|
|
}
|