depot/third_party/nixpkgs/pkgs/data/fonts/gentium/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

53 lines
1.9 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# when changing this expression convert it from 'fetchzip' to 'stdenvNoCC.mkDerivation'
{ lib, fetchzip }:
let
version = "6.101";
name = "gentium-${version}";
in (fetchzip rec {
inherit name;
url = "http://software.sil.org/downloads/r/gentium/GentiumPlus-${version}.zip";
sha256 = "sha256-+T5aUlqQYDWRp4/4AZzsREHgjAnOeUB6qn1GAI0A5hE=";
meta = with lib; {
homepage = "https://software.sil.org/gentium/";
description = "A high-quality typeface family for Latin, Cyrillic, and Greek";
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.
'';
downloadPage = "https://software.sil.org/gentium/download/";
maintainers = with maintainers; [ raskin rycee ];
license = licenses.ofl;
platforms = platforms.all;
};
}).overrideAttrs (_: {
postFetch = ''
mkdir -p $out/share/{doc,fonts}
unzip -l $downloadedFile
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
'';
})