nixpkgs/pkgs/data/fonts/gentium-book-basic/default.nix

29 lines
849 B
Nix
Raw Normal View History

2016-03-02 20:45:45 +03:00
{ stdenv, fetchzip }:
let
2016-03-02 20:45:45 +03:00
major = "1";
minor = "102";
version = "${major}.${minor}";
in fetchzip rec {
name = "gentium-book-basic-${version}";
2016-03-02 20:45:45 +03:00
url = "http://software.sil.org/downloads/r/gentium/GentiumBasic_${major}${minor}.zip";
2016-03-02 20:45:45 +03: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 -d $out/share/doc/${name}
2016-03-02 20:45:45 +03:00
'';
sha256 = "0598zr5f7d6ll48pbfbmmkrybhhdks9b2g3m2g67wm40070ffzmd";
2016-03-02 20:45:45 +03:00
meta = with stdenv.lib; {
homepage = https://software.sil.org/gentium/;
2016-03-02 20:45:45 +03:00
description = "A high-quality typeface family for Latin, Cyrillic, and Greek";
2017-01-31 13:00:14 +03:00
maintainers = with maintainers; [ ];
2016-03-02 20:45:45 +03:00
license = licenses.ofl;
platforms = platforms.all;
};
}