komikaze: init at 0-unstable-2000-09-23

This commit is contained in:
pancaek
2025-11-04 23:00:38 -08:00
parent 6d92008212
commit 868d79e1cc
+29
View File
@@ -0,0 +1,29 @@
{
stdenvNoCC,
lib,
fetchzip,
}:
stdenvNoCC.mkDerivation {
pname = "komikaze";
version = "0-unstable-2000-09-23";
src = fetchzip {
url = "https://www.1001fonts.com/download/komikaze.zip";
hash = "sha256-daJRwgkzL5v224KwkaGMK2FqVnfin8+8WvMTvXTkCGE=";
stripRoot = false;
};
installPhase = ''
runHook preInstall
install -Dm444 *.ttf -t $out/share/fonts/ttf
runHook postInstall
'';
meta = {
homepage = "https://pedroreina.net/apostrophiclab/0045-Komikaze/komikaze.html";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ pancaek ];
platforms = lib.platforms.all;
};
}