about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ge/geist-font/package.nix
blob: 34dd5dae26b8f44e4dd8cb9e2e71de50003f4661 (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
{ lib
, stdenvNoCC
, fetchzip
}:

stdenvNoCC.mkDerivation rec {
  pname = "geist-font";
  version = "1.1.0";

  srcs = [
    (fetchzip {
      name = "geist-mono";
      url = "https://github.com/vercel/geist-font/releases/download/${version}/Geist.Mono.zip";
      stripRoot = false;
      hash = "sha256-8I4O2+bJAlUiDIhbyXzAcwXP5qpmHoh4IfrFio7IZN8=";
    })
    (fetchzip {
      name = "geist-sans";
      url = "https://github.com/vercel/geist-font/releases/download/${version}/Geist.zip";
      stripRoot = false;
      hash = "sha256-nSN+Ql5hTd230w/u6VZyAZaPtFSaHGmMc6T1fgGTCME=";
    })
  ];

  sourceRoot = ".";

  installPhase = ''
    runHook preInstall

    install -Dm444 geist-{mono,sans}/*/*.otf -t $out/share/fonts/opentype

    runHook postInstall
  '';

  meta = {
    description = "Font family created by Vercel in collaboration with Basement Studio";
    homepage = "https://vercel.com/font";
    license = lib.licenses.ofl;
    maintainers = with lib.maintainers; [ eclairevoyant x0ba ];
    platforms = lib.platforms.all;
    sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
  };
}