feat: Add coming-soon

This commit is contained in:
Takamatsu Naoki
2024-07-08 12:26:05 +09:00
parent f3316ab833
commit 2c17be1caf
2 changed files with 20 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{stdenv, fetchzip} :
stdenv.mkDerivation {
pname = "coming-soon";
version = "1.0.0";
src = fetchzip {
url = "https://www.1001fonts.com/download/coming-soon.zip";
hash = "sha256-bfjy+HOnYVb2Ungg8P++LurhSLKIJrXlB5q6wFPur64";
stripRoot = false;
};
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
}