fedi: fix local emoji builds

This commit is contained in:
twoneis 2025-03-23 22:58:42 +01:00
parent d45e4e9d02
commit b395075081
6 changed files with 15 additions and 5 deletions

16
modules/fedi/blobhaj.nix Normal file
View file

@ -0,0 +1,16 @@
{stdenvNoCC}:
stdenvNoCC.mkDerivation {
pname = "blobhaj";
version = "13.12.2022";
src = ./blobhaj;
installPhase = ''
runHook preInstall
mkdir -p $out
cp *.png $out
runHook postInstall
'';
}