feat: Add logistra

This commit is contained in:
Takamatsu Naoki
2025-02-06 13:46:51 +09:00
parent 85e74cf14e
commit 600db74e94
3 changed files with 22 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
{stdenv, fetchzip} :
stdenv.mkDerivation {
pname = "logistra";
version = "1.0.0";
src = fetchzip {
url = "https://www.1001fonts.com/download/logistra.zip";
hash = "sha256-/A4gSC5Kjh8Xzy0+B0zoTGyA/NyEd3nSIvY5EFdnOhw";
stripRoot = false;
};
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
}