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

stdenvNoCC.mkDerivation rec {
  pname = "lexend";
  version = "0.pre+date=2022-09-22";

  src = fetchFromGitHub {
    owner = "googlefonts";
    repo = pname;
    rev = "cd26b9c2538d758138c20c3d2f10362ed613854b";
    sha256 = "ZKogntyJ/44GBZmFwbtw5Ujw5Gnvv0tVB59ciKqR4c8=";
  };

  installPhase = ''
    runHook preInstall

    cd fonts
    for f in *; do
      install -D -t $out/share/fonts/truetype/lexend/$f $f/ttf/*
      install -D -t $out/share/fonts/variable/lexend/$f $f/variable/*
    done

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://www.lexend.com";
    description = "A variable font family designed to aid in reading proficiency";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = with maintainers; [ fufexan ];
  };
}