summary refs log tree commit diff
path: root/pkgs/data/fonts/league-of-moveable-type/default.nix
blob: 236a2e39ed10a0647332556f1e9b58cadc4868d4 (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
{ lib
, symlinkJoin
, the-neue-black
, blackout
, chunk
, fanwood
, goudy-bookletter-1911
, junction-font
, knewave
, league-gothic
, league-script-number-one
, league-spartan
, linden-hill
, orbitron
, ostrich-sans
, prociono
, raleway
, sniglet
, sorts-mill-goudy
}:

symlinkJoin {
  name = "league-of-moveable-type";

  paths = [
    the-neue-black
    blackout
    chunk
    fanwood
    goudy-bookletter-1911
    junction-font
    knewave
    league-gothic
    league-script-number-one
    league-spartan
    linden-hill
    orbitron
    ostrich-sans
    prociono
    raleway
    sniglet
    sorts-mill-goudy
  ];

  meta = {
    description = "Font Collection by The League of Moveable Type";

    longDescription = ''
      We're done with the tired old fontstacks of yesteryear. The web
      is no longer limited, and now it's time to raise our standards.
      Since 2009, The League has given only the most well-made, free &
      open-source, @font-face ready fonts.
    '';

    homepage = "https://www.theleagueofmoveabletype.com/";

    license = lib.licenses.ofl;

    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ bergey minijackson ];
  };
}