about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/goudy-bookletter-1911/default.nix
blob: 14997cd62b6e02a2a5165c7c45671d72355fd0b3 (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
{ lib, fetchFromGitHub, stdenvNoCC }:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "goudy-bookletter-1911";
  version = "2011-05-11";

  src = fetchFromGitHub {
    owner = "theleagueof";
    repo = finalAttrs.pname;
    rev = "85ff5b834b4f63feb36fd2053949c19660580e48";
    hash = "sha256-11axs1+SRQj+1lYTq2LYf1I65WrrvB/UnAgZkHPP1N8=";
  };

  installPhase = ''
    runHook preInstall

    install -D -m444 -t $out/share/fonts/opentype $src/*.otf

    runHook postInstall
  '';

  meta = {
    description = "A public domain font based on Frederic Goudy’s Kennerley Oldstyle";
    homepage = "https://www.theleagueofmoveabletype.com/goudy-bookletter-1911";
    license = lib.licenses.ofl;
    maintainers = with lib.maintainers; [ minijackson ];
  };
})