about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/league-gothic/default.nix
blob: fd12e0a86591e15407e2d19f8dc4ed5b299d4eac (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
{ lib, fetchzip, stdenvNoCC }:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "league-gothic";
  version = "1.601";

  src = fetchzip {
    url = "https://github.com/theleagueof/league-gothic/releases/download/${finalAttrs.version}/LeagueGothic-${finalAttrs.version}.tar.xz";
    hash = "sha256-emkXKyQw4R0Zgg02oJsvBkqV0jmczP0tF0K2IKqJHMA=";
  };

  installPhase = ''
    runHook preInstall

    install -D -m444 -t $out/share/fonts/truetype $src/static/TTF/*.ttf
    install -D -m444 -t $out/share/fonts/opentype $src/static/OTF/*.otf

    runHook postInstall
  '';

  meta = {
    description = "A revival of an old classic, Alternate Gothic #1";
    longDescription = ''
      League Gothic is a revival of an old classic, and one of our favorite
      typefaces, Alternate Gothic #1. It was originally designed by Morris
      Fuller Benton for the American Type Founders Company in 1903. The company
      went bankrupt in 1993, and since the original typeface was created before
      1923, the typeface is in the public domain.

      We decided to make our own version, and contribute it to the Open Source
      Type Movement. Thanks to a commission from the fine & patient folks over
      at WND.com, it’s been revised & updated with contributions from Micah
      Rich, Tyler Finck, and Dannci, who contributed extra glyphs.
    '';
    homepage = "https://www.theleagueofmoveabletype.com/league-gothic";
    license = lib.licenses.ofl;
    maintainers = with lib.maintainers; [ minijackson ];
  };
})