fonts!!
This commit is contained in:
parent
cae0bdfc96
commit
07b0a79e8e
4 changed files with 121 additions and 2 deletions
29
packages/renogare/default.nix
Normal file
29
packages/renogare/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue