atkinson-monolegible:init at 0-unstable-2023-02-27

Gliczy 46cce423 a86d0694

+31
+31
pkgs/by-name/at/atkinson-monolegible/package.nix
···
··· 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 + }