updated flake inputs

This commit is contained in:
2026-02-18 15:52:27 -05:00
parent 79ffcea64b
commit b188e29dfd
19 changed files with 1616 additions and 316 deletions

View File

@@ -0,0 +1,24 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenvNoCC.mkDerivation {
pname = "billy-font";
version = "0.0.1";
src = ../../../assets/fonts/Billyfont.zip;
buildInputs = [
pkgs.unzip
];
dontUnpack = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
unzip $src -d $out/share/fonts/truetype
runHook postInstall
'';
}