This commit is contained in:
biscuit
2025-05-20 22:55:43 -05:00
parent f31387ab12
commit e21cf63216
3 changed files with 18 additions and 18 deletions
+9 -7
View File
@@ -20,14 +20,16 @@
packages.monolisa = pkgs.stdenvNoCC.mkDerivation {
name = "monolisa-font";
dontConfigure = true;
src = builtins.toPath ./fonts;
src = builtins.toPath ./fonts/Monolisa;
dontUnpack = true;
installPhase = ''
mkdir -p $out/share/fonts/truetype
find $src -type f -name "*.ttf" -exec cp {} $out/share/fonts/truetype/ \;
'';
meta = {description = "Monolisa font.";};
};
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp -R $src/Moonolisa/*.ttf $out/share/fonts/truetype
'';
meta = {description = "Monolisa font.";};
}
);
}