mirror of
https://github.com/Takamatsu-Naoki/nixos-fonts.git
synced 2026-06-05 14:59:30 -05:00
✨ feat: Add logistra
This commit is contained in:
@@ -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
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user