🎉 Initial Commit

This commit is contained in:
Takamatsu Naoki
2024-03-03 04:16:20 +09:00
commit f6a6fca3e2
13 changed files with 252 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{stdenv, fetchzip} :
stdenv.mkDerivation {
pname = "rii-tegaki-fude";
version = "1.0.0";
src = fetchzip {
url = "http://aoirii.babyblue.jp/font/riitf/riitf.zip";
hash = "sha256-X0dFSCM9i6eS5t3+WOsB/d0Hdaiw/bnQ9014MBgI2a8";
};
installPhase = ''
runHook preInstall
install -Dm644 *.otf -t $out/share/fonts/opentype
runHook postInstall
'';
}