shantell-sans: init at 1.011 (#526443)

This commit is contained in:
Arne Keller
2026-07-03 19:41:22 +00:00
committed by GitHub
2 changed files with 43 additions and 0 deletions
+7
View File
@@ -3390,6 +3390,13 @@
githubId = 4313548;
name = "Ben Sparks";
};
benhaskins = {
name = "Ben Haskins";
email = "ben.haskins@spang.co.uk";
github = "benhaskins";
githubId = 179679961;
keys = [ { fingerprint = "bnYZE0VGodlVwh/eUlqGQsAHeSE0hBPbo2EN2LrGu0M"; } ];
};
benhiemer = {
name = "Benedikt Hiemer";
email = "ben.email@posteo.de";
+36
View File
@@ -0,0 +1,36 @@
{
lib,
stdenvNoCC,
fetchzip,
installFonts,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "shantell-sans";
version = "1.011";
strictDeps = true;
__structuredAttrs = true;
outputs = [
"out"
"webfont"
];
src = fetchzip {
url = "https://github.com/arrowtype/shantell-sans/releases/download/${finalAttrs.version}/Shantell_Sans_${finalAttrs.version}.zip";
hash = "sha256-xgE4BSl2A7yeVP5hWWUViBDoU8pZ8KkJJrsSfGRIjOk=";
};
nativeBuildInputs = [ installFonts ];
meta = {
description = "A marker-style variable font by ArrowType and Shantell Martin";
homepage = "https://github.com/arrowtype/shantell-sans";
license = lib.licenses.ofl;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [
benhaskins
];
};
})