Files
nixpkgs/pkgs/by-name/an/antonio-font/package.nix
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

43 lines
1.3 KiB
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "antonio";
version = "0-unstable-2013-11-21";
src = fetchFromGitHub {
owner = "vernnobile";
repo = "antonioFont";
rev = "4b3e07ab5647a613931153a09067a785f54b980a";
hash = "sha256-/mlVAEMkhmj6NUcAa9HHtpWw4lS5ze9IXw9IsrHd2J0=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
cp $src/{Bold,Light,Regular}/*.ttf $out/share/fonts/truetype
runHook postInstall
'';
meta = {
homepage = "https://github.com/vernnobile/antonioFont";
description = "Condensed, sans serif font for larger display, headline & banner use, based on Anton";
longDescription = ''
Antonio is a refined version of the Anton Font. Anton is a single
weight web font, designed specifically for larger display, headline and
banner use (see Googles PR for the Chromebook notebooks that used
Anton, big and bright).
Antonio extends the Anton design to include more weights and introduces
refinements to the design that makes it also suitable for use in smaller
headings, menus and buttons etc.
'';
license = lib.licenses.ofl; # in fontinfo.plist files
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ toastal ];
};
}