tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
atkinson-hyperlegible: init at unstable-2021-04-29
Zhaofeng Li
4 years ago
7c8bf4ff
33d3282b
+28
2 changed files
expand all
collapse all
unified
split
pkgs
data
fonts
atkinson-hyperlegible
default.nix
top-level
all-packages.nix
+26
pkgs/data/fonts/atkinson-hyperlegible/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib, fetchFromGitHub }:
2
+
3
+
let
4
+
pname = "atkinson-hyperlegible";
5
+
version = "unstable-2021-04-29";
6
+
in fetchFromGitHub {
7
+
name = "${pname}-${version}";
8
+
9
+
owner = "googlefonts";
10
+
repo = "atkinson-hyperlegible";
11
+
rev = "1cb311624b2ddf88e9e37873999d165a8cd28b46";
12
+
sha256 = "sha256-urSTqC3rfDRM8IMG+edwKEe7NPiTuDZph3heGHzLDks=";
13
+
14
+
postFetch = ''
15
+
tar xf $downloadedFile --strip=1
16
+
install -Dm644 -t $out/share/fonts/opentype fonts/otf/*
17
+
'';
18
+
19
+
meta = with lib; {
20
+
description = "Typeface designed to offer greater legibility and readability for low vision readers";
21
+
homepage = "https://brailleinstitute.org/freefont";
22
+
license = licenses.ofl;
23
+
platforms = platforms.all;
24
+
maintainers = with maintainers; [ zhaofengli ];
25
+
};
26
+
}
+2
pkgs/top-level/all-packages.nix
···
173
174
antsimulator = callPackage ../games/antsimulator { };
175
0
0
176
atuin = callPackage ../tools/misc/atuin {
177
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
178
};
···
173
174
antsimulator = callPackage ../games/antsimulator { };
175
176
+
atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };
177
+
178
atuin = callPackage ../tools/misc/atuin {
179
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
180
};