saman_ttf: init at 1.001 (#418061)

This commit is contained in:
Aleksana
2025-07-05 18:51:13 +08:00
committed by GitHub
+32
View File
@@ -0,0 +1,32 @@
{
lib,
stdenvNoCC,
fetchurl,
unzip,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "saman_ttf";
version = "1.001";
src = fetchurl {
url = "https://github.com/tcgumus/saman/releases/download/v${finalAttrs.version}/SamanDere-Regular.ttf";
hash = "sha256-hLlo4qtxL1RDiA9PpRvo2F7rdCVGPs2G8NHKydLfJXU=";
};
dontUnpack = true;
installPhase = ''
runHook preInstall
install -Dm644 $src $out/share/fonts/truetype/SamanDere-Regular.ttf
runHook postInstall
'';
meta = {
description = "Medium contrast sans serif font for web use";
homepage = "https://github.com/tcgumus/saman";
license = lib.licenses.ofl;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ gigahawk ];
};
})