1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
8 url = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tg-${version}otf.zip";
10 hash = "sha256-+6IufuFf+IoLXoZEPlfHUNgRhKrQNBEZ1OwPD9/uOjg=";
16 mkdir -p $out/share/fonts/truetype
17 cp *.otf $out/share/fonts/truetype
23 description = "OpenType fonts from the Gyre project, suitable for use with (La)TeX";
25 The Gyre project started in 2006, and will
26 eventually include enhanced releases of all 35 freely available
27 PostScript fonts distributed with Ghostscript v4.00. These are
28 being converted to OpenType and extended with diacritical marks
29 covering all modern European languages and then some
31 homepage = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/index_html#Readings";
32 license = lib.licenses.lppl13c;
33 platforms = lib.platforms.all;
34 maintainers = with lib.maintainers; [ bergey ];