{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / atkinson-hyperlegible / default.nix
blobe8b09cfb637cdb629b189a46897cdc97b6dc9c56
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation {
4   pname = "atkinson-hyperlegible";
5   version = "unstable-2021-04-29";
7   src = fetchFromGitHub {
8     owner = "googlefonts";
9     repo = "atkinson-hyperlegible";
10     rev = "1cb311624b2ddf88e9e37873999d165a8cd28b46";
11     hash = "sha256-RN4m5gyY2OiPzRXgFVQ3pq6JdkPcMxV4fRlX2EK+gOM=";
12   };
14   installPhase = ''
15     runHook preInstall
17     install -Dm644 -t $out/share/fonts/opentype fonts/otf/*
19     runHook postInstall
20   '';
22   meta = with lib; {
23     description = "Typeface designed to offer greater legibility and readability for low vision readers";
24     homepage = "https://brailleinstitute.org/freefont";
25     license = licenses.ofl;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ zhaofengli ];
28   };