Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
887 B
Nix
37 lines
887 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "atkinson-hyperlegible-mono";
|
|
version = "2.001-unstable-2024-11-20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googlefonts";
|
|
repo = "atkinson-hyperlegible-next-mono";
|
|
rev = "154d50362016cc3e873eb21d242cd0772384c8f9";
|
|
hash = "sha256-V0zWbNYT3RGO9vjX+GHfO38ywMozcZVJkBZH+8G5sC0=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 -t $out/share/fonts/opentype fonts/otf/*
|
|
install -Dm644 -t $out/share/fonts/variable fonts/variable/*
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "New (2024) monospace sibling family to Atkinson Hyperlegible Next";
|
|
homepage = "https://www.brailleinstitute.org/freefont/";
|
|
license = lib.licenses.ofl;
|
|
maintainers = with lib.maintainers; [ pancaek ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|