summary refs log tree commit diff
path: root/pkgs/data/fonts/lobster-two/default.nix
blob: d5a46b43fb493f9238d8c293bbbffbd36a0be2c9 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
{stdenv, fetchurl}:

let

  # HG revision in which this version of the font can be fount.
  rev = "8e98053718f9a15184c93d6530885791be71b756";

  urlBase = "https://googlefontdirectory.googlecode.com/hg-history/${rev}/ofl/lobstertwo";

  # Just a small convenience function.
  fetch = {name, path ? "/src", sha256}:
    {
      inherit name;
      file = fetchurl {
        url = "${urlBase}${path}/${name}";
        inherit sha256;
      };
    };

  fontlog =
    fetch {
      name = "FONTLOG.txt";
      path = "";
      sha256 = "0n405i8m70q95y8w43gzr5yvkj7gx7rd3xa4rx6y8qcqv5g7v9if";
    };

  bold =
    fetch {
      name = "LobsterTwo-Bold.otf";
      sha256 = "0gkayn96vvgngs9xnmcyyf16q4payk79ghvl354rl93ayb3gf7x0";
    };

  boldItalic =
    fetch {
      name = "LobsterTwo-BoldItalic.otf";
      sha256 = "0wznqkvwjqi9s4bg10fpp2345by3nxa0m0w6b3al3zaqyx2p1dxp";
    };

  italic =
    fetch {
      name = "LobsterTwo-Italic.otf";
      sha256 = "0lpnzwgwl5fm6gqy8bylbryz0hy94mf1mp615y5sh0wikdvk570z";
    };

  regular =
    fetch {
      name = "LobsterTwo-Regular.otf";
      sha256 = "147m3sa3sqqbkbw1hgjdwnw8w0y37x58g5p09s7q2vm74flcpbq1";
    };
in

  stdenv.mkDerivation rec {
    pname = "lobstertwo";
    version = "1.006";

    phases = ["installPhase"];

    installPhase = ''
      mkdir -p $out/share/fonts/opentype
      mkdir -p $out/share/doc/${pname}-${version}
      cp -v ${fontlog.file} $out/share/doc/${pname}-${version}/${fontlog.name}
      cp -v ${bold.file} $out/share/fonts/opentype/${bold.name}
      cp -v ${boldItalic.file} $out/share/fonts/opentype/${boldItalic.name}
      cp -v ${italic.file} $out/share/fonts/opentype/${italic.name}
      cp -v ${regular.file} $out/share/fonts/opentype/${regular.name}
    '';

    outputHashAlgo = "sha256";
    outputHashMode = "recursive";
    outputHash = "0if9l8pzwgfnbdjg5yblcy08dwn9yj3wzz29l0fycia46xlzd4ym";

    meta = with stdenv.lib; {
      homepage = "https://github.com/librefonts/lobstertwo";
      description = "Script font with many ligatures";
      license = licenses.ofl;
      platforms = platforms.all;
      maintainers = [maintainers.rycee];
      broken = true; # googlecode.com RIP; can be built from sources
    };
  }