summary refs log tree commit diff
path: root/pkgs/data/fonts/atkinson-hyperlegible/default.nix
blob: 8b2b04553726ad1b06e0f2af4ba7b6b6e7c8a756 (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 }:

let
  pname = "atkinson-hyperlegible";
  version = "unstable-2021-04-29";
in fetchFromGitHub {
  name = "${pname}-${version}";

  owner = "googlefonts";
  repo = "atkinson-hyperlegible";
  rev = "1cb311624b2ddf88e9e37873999d165a8cd28b46";
  sha256 = "sha256-urSTqC3rfDRM8IMG+edwKEe7NPiTuDZph3heGHzLDks=";

  postFetch = ''
    install -Dm644 -t $out/share/fonts/opentype $out/fonts/otf/*
    shopt -s extglob dotglob
    rm -rf $out/!(share)
    shopt -u extglob dotglob
  '';

  meta = with lib; {
    description = "Typeface designed to offer greater legibility and readability for low vision readers";
    homepage = "https://brailleinstitute.org/freefont";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = with maintainers; [ zhaofengli ];
  };
}