Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
1.3 KiB
Nix

{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "major-mono-display";
version = "2.000";
src = fetchFromGitHub {
owner = "googlefonts";
repo = "majormono";
rev = "fae0bb9c728fe082097baedaf23604e290ddac16";
hash = "sha256-ishGGr8bY6UjEG/Hn5We8hOO5mcDq/41+DMn+dQGGUA=";
};
installPhase = ''
runHook preInstall
install -Dm444 -t $out/share/fonts/truetype fonts/*.ttf
runHook postInstall
'';
meta = {
description = "Monospaced geometric sans serif all-uppercase typeface";
longDescription = ''
Majör is a monospaced geometric sans serif all-uppercase typeface
which also has a complete set of constructivist display characters
with a playful attitude. It has many Opentype features but the basic
variation between serious/playful faces can be implemented on web use
where Opentype features can be hard to apply, thanks to the fact that
the sans serif and the display versions of the letterforms can be
reached via lowercase and uppercase options. This makes Majör a great
choice for web typography, especially at large point-sizes.
'';
homepage = "https://github.com/googlefonts/majormono";
license = lib.licenses.ofl;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ mimvoid ];
};
}