This commit is contained in:
Kris
2026-03-28 20:49:12 +02:00
parent 69e881d729
commit 8ed9bd9618
28 changed files with 207 additions and 276 deletions

View File

@@ -0,0 +1,14 @@
{ stdenvNoCC }:
stdenvNoCC.mkDerivation {
pname = "kris-nonnix-fonts";
version = "1";
src = ../../../asset/fonts/nonnix;
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t "$out/share/fonts/truetype"
runHook postInstall
'';
}