summary refs log tree commit diff
path: root/pkgs/data/fonts/tex-gyre-math/default.nix
blob: cd3c3ab00b180b9838432727b130e6600e87111c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{ stdenv, fetchzip }:

let
  variants = {
    bonum = {
      displayName = "Bonum";
      version = "1.005";
      sha256 = "1b6x7siypyxp1lhq7xxdqafwbn6p2p3xm3jb38q999sv8cgslxz8";
      outputHash = "1zjaxkzidqmxakh9d61n0by9mi8hrmir45jppjj6hzwhm3rvknff";
    };
    pagella = {
      displayName = "Pagella";
      version = "1.632";
      sha256 = "0f4cgq9w0lc1fbcbfqiv19mdhivbsscl13jmb0ln685641ci2sjr";
      outputHash = "0wz2n1dpx9b8a0qgqy8vl712fxhi87mhcda281xaad62chndwf6k";
    };
    schola = {
      displayName = "Schola";
      version = "1.533";
      sha256 = "0caqgkz7gz700h5a1mai0gq8hv7skrgs5nnrs1f7zw1mb9g53ya9";
      outputHash = "0jk4bpxki95a9lmfj4cgpnv1jwlkh8qixbkf498n1x7hkaz03f5n";
    };
    termes = {
      displayName = "Termes";
      version = "1.543";
      sha256 = "10ayqfpryfn1l35hy0vwyjzw3a6mfsnzgf78vsnccgk2gz1g9vhz";
      outputHash = "0pa433cgshlypbyrrlp3qq0wg972rngcp37pr8pxdfshgz13q1mm";
    };
  };

  mkVariant = variant: {displayName, version, sha256, outputHash}:
    let dotless_version = builtins.replaceStrings ["."] [""] version; in
    stdenv.mkDerivation rec {
      name = "tex-gyre-${variant}-math-${version}";
      inherit version;

      src = fetchzip {
        url = "http://www.gust.org.pl/projects/e-foundry/tg-math/download/texgyre${variant}-math-${dotless_version}.zip";
        inherit sha256;
      };

      installPhase = ''
        install -m444 -Dt $out/share/fonts/opentype opentype/*.otf
        install -m444 -Dt $out/share/doc/${name}    doc/*.txt
      '';

      outputHashAlgo = "sha256";
      outputHashMode = "recursive";
      inherit outputHash;

      meta = with stdenv.lib; {
        longDescription = ''
          TeX Gyre ${displayName} Math is a math companion for the TeX Gyre
          ${displayName} family of fonts (see
          http://www.gust.org.pl/projects/e-foundry/tex-gyre/) in the OpenType format.
        '';
        homepage = "http://www.gust.org.pl/projects/e-foundry/tg-math";
        # "The TeX Gyre Math fonts are licensed under the GUST Font License (GFL),
        # which is a free license, legally equivalent to the LaTeX Project Public
        # License (LPPL), version 1.3c or later." - GUST website
        license = licenses.lppl13c;
        maintainers = with maintainers; [ siddharthist ];
        platforms = platforms.all;
      };
    };
in
  stdenv.lib.mapAttrs mkVariant variants