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

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "fg-virgil";
  version = "0.16.1";

  src = fetchFromGitHub {
    owner = "excalidraw";
    repo = "excalidraw";
    rev = "v${finalAttrs.version}";
    hash = "sha256-iziCCHacaShPqb0f5nI8cCinFFs5fB3TcMJrifNhg4I=";
  };

  installPhase = ''
    runHook preInstall

    install -D -m 444 public/Virgil.woff2 -t $out/share/fonts/woff2
    install -D -m 444 public/FG_Virgil.woff2 -t $out/share/fonts/woff2
    install -D -m 444 public/FG_Virgil.ttf -t $out/share/fonts/ttf

    runHook postInstall
  '';

  meta = {
    homepage = "https://github.com/excalidraw/virgil";
    description = "The font that powers Excalidraw";
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ drupol ];
    license = lib.licenses.ofl;
  };
})