mirror of
https://github.com/Takamatsu-Naoki/nixos-fonts.git
synced 2026-06-05 14:59:30 -05:00
🎉 Initial Commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
{stdenv, fetchzip} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "azukifont";
|
||||
version = "1.0.0";
|
||||
src = fetchzip {
|
||||
url = "http://azukifont.com/font/azukifont121.zip";
|
||||
hash = "sha256-mw2dgvzAX9k2vEmuHtH3enAl3Zs7aLdUcWEczdaaxrw";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 *.ttf -t $out/share/fonts/truetype
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user