Merge pull request #136742 from zhaofengli/atkinson-hyperlegible

conduit-nginx
Sandro 2021-10-21 21:23:59 +02:00 committed by GitHub
commit 63eb55622f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ 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 = ''
tar xf $downloadedFile --strip=1
install -Dm644 -t $out/share/fonts/opentype fonts/otf/*
'';
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 ];
};
}

View File

@ -178,6 +178,8 @@ with pkgs;
antsimulator = callPackage ../games/antsimulator { };
atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };
atuin = callPackage ../tools/misc/atuin {
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};