shantell-sans: init at 1.011 (#526443)
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user