komikazba: init at 0-unstable-2000-10-30

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