ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / by-name / gy / gyre-fonts / package.nix
blob33a4bcd308e6e1b659d44754d87e3b7b79ee4bc7
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "gyre-fonts";
9   version = "2.005";
11   src = fetchzip {
12     url = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tg-${version}otf.zip";
13     stripRoot = false;
14     hash = "sha256-+6IufuFf+IoLXoZEPlfHUNgRhKrQNBEZ1OwPD9/uOjg=";
15   };
17   installPhase = ''
18     runHook preInstall
20     mkdir -p $out/share/fonts/truetype
21     cp *.otf $out/share/fonts/truetype
23     runHook postInstall
24   '';
26   meta = {
27     description = "OpenType fonts from the Gyre project, suitable for use with (La)TeX";
28     longDescription = ''
29       The Gyre project started in 2006, and will
30       eventually include enhanced releases of all 35 freely available
31       PostScript fonts distributed with Ghostscript v4.00.  These are
32       being converted to OpenType and extended with diacritical marks
33       covering all modern European languages and then some
34     '';
35     homepage = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/index_html#Readings";
36     license = lib.licenses.lppl13c;
37     platforms = lib.platforms.all;
38     maintainers = with lib.maintainers; [ bergey ];
39   };