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

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

  src = fetchFromGitHub {
    owner = "theleagueof";
    repo = finalAttrs.pname;
    rev = "cbaaed9704e7d37d3dcdbdf0b472e9efd0e39432";
    hash = "sha256-OroFhhb4RxPHkx+/8PtFnxs1GQVXMPiYTd+2vnRbIjg=";
  };

  installPhase = ''
    runHook preInstall

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

    runHook postInstall
  '';

  meta = {
    description = "A serif based on the work of a famous Czech-American type designer of yesteryear";
    longDescription = ''
      Based on work of a famous Czech-American type designer of yesteryear. The
      package includes roman and italic.
    '';
    homepage = "https://www.theleagueofmoveabletype.com/fanwood";
    license = lib.licenses.ofl;
    maintainers = with lib.maintainers; [ minijackson ];
  };
})