Skip to content

Commit 46cce42

Browse files
committed
atkinson-monolegible:init at 0-unstable-2023-02-27
1 parent a86d069 commit 46cce42

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
lib,
3+
stdenvNoCC,
4+
fetchFromGitHub,
5+
}:
6+
7+
stdenvNoCC.mkDerivation {
8+
pname = "atkinson-monolegible";
9+
version = "0-unstable-2023-02-27";
10+
11+
src = fetchFromGitHub {
12+
owner = "Hylian";
13+
repo = "atkinson-monolegible";
14+
rev = "4d0e404118dece699ca926c310588316bfcd5ac2";
15+
hash = "sha256-U09ysphpDjXG/OwPxQDUiLHAYHGfiY+lL4+QIQLPj74=";
16+
};
17+
18+
installPhase = ''
19+
runHook preInstall
20+
install -Dm644 AtkinsonMonolegible.ttf -t $out/share/fonts/truetype
21+
runHook postInstall
22+
'';
23+
24+
meta = {
25+
homepage = "https://github.com/Hylian/atkinson-monolegible";
26+
description = "Mono variant of the Atkinson Hyperlegible typeface";
27+
license = lib.licenses.ofl;
28+
platforms = lib.platforms.all;
29+
maintainers = with lib.maintainers; [ Gliczy ];
30+
};
31+
}

0 commit comments

Comments
 (0)