From 245d220928cc72aa59f9147c1338df587d1cc49f Mon Sep 17 00:00:00 2001 From: Ben Haskins Date: Sun, 31 May 2026 17:51:52 +0100 Subject: [PATCH] shantell-sans: init at 1.011 Assisted-by: Antigravity (Gemini 3.5 Flash) --- pkgs/by-name/sh/shantell-sans/package.nix | 36 +++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pkgs/by-name/sh/shantell-sans/package.nix diff --git a/pkgs/by-name/sh/shantell-sans/package.nix b/pkgs/by-name/sh/shantell-sans/package.nix new file mode 100644 index 000000000000..43f205fd2bea --- /dev/null +++ b/pkgs/by-name/sh/shantell-sans/package.nix @@ -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 + ]; + }; +})