nix-dotfiles/packages/renogare/default.nix
2026-06-09 19:52:13 -07:00

29 lines
630 B
Nix

{ lib, fetchzip, stdenvNoCC }:
stdenvNoCC.mkDerivation {
pname = "renogare";
version = "1.0.0";
src = fetchzip {
url = "https://dl.dafont.com/dl/?f=renogare";
hash = "sha256-zNqVO0JyWtEbEB6iVMaTNPNoLkqP6IjJA/UF0lDbCMk=";
extension = "zip";
stripRoot = false;
};
installPhase = ''
runHook preInstall
install -Dm644 -t $out/share/fonts/opentype *.otf
runHook postInstall
'';
meta = with lib; {
description = "The Renogare font";
homepage = "https://www.dafont.com/renogare.font";
# idk what to put here:
# license = licenses.ofl;
platforms = platforms.all;
};
}