evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / gy / gyre-fonts / package.nix
blob254766d1de289c8727be9aa80d563345f1b1832d
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "gyre-fonts";
5   version = "2.005";
7   src = fetchzip {
8     url = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tg-${version}otf.zip";
9     stripRoot = false;
10     hash = "sha256-+6IufuFf+IoLXoZEPlfHUNgRhKrQNBEZ1OwPD9/uOjg=";
11   };
13   installPhase = ''
14     runHook preInstall
16     mkdir -p $out/share/fonts/truetype
17     cp *.otf $out/share/fonts/truetype
19     runHook postInstall
20   '';
22   meta = {
23     description = "OpenType fonts from the Gyre project, suitable for use with (La)TeX";
24     longDescription = ''
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
30     '';
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 ];
35   };