dotfiles/fonts/iawriter.nix
2025-03-09 09:41:28 +01:00

22 lines
389 B
Nix

#
# Manrope font, with italics.
#
{
stdenv,
fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "ia-writer-fonts";
meta.description = "the iA writer";
version = "0.1.0";
src = ./iA-Fonts;
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp -R $src/iA*/Static/*.ttf $out/share/fonts/truetype/
cp -R $src/iA*/Variable/*.ttf $out/share/fonts/truetype/
'';
}