nix-dotfiles/pkgs/nunito/nunito.nix
2025-01-31 11:09:51 -05:00

20 lines
516 B
Nix

{ pkgs }:
with pkgs;
stdenv.mkDerivation rec {
name = "archivo";
version = "43d16f9";
src = fetchFromGitHub {
owner = "googlefonts";
repo = "nunito";
rev = version;
hash = "sha256-yZ+pPLcgyWRa8i3cn1SwJUskBzUl1na2mndhok1mMok=";
};
# sourceRoot = "fonts/ttf";
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp -a fonts/variable/*.ttf $out/share/fonts/truetype
'';
}