feat: add iglesia-light and comic-relief fonts; add gnome.gnome-font-viewer

This commit is contained in:
Jacob Bachmann 2024-07-18 19:44:53 +02:00
parent 23831b583b
commit a990c70c8f
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
5 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ pkgs }: pkgs.stdenv.mkDerivation {
pname = "iglesia-light-typeface";
version = "1.009";
src = ./iglesia-light.zip;
unpackPhase = ''
runHook preUnpack
${pkgs.unzip}/bin/unzip $src
runHook postUnpack
'';
installPhase = ''
runHook preInstall
install -Dm644 Iglesia\ Light.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
}