add volpeon emojis

This commit is contained in:
twoneis 2025-02-24 19:48:01 +01:00
parent 66c98fe365
commit f7a50f22e2
3 changed files with 56 additions and 2 deletions

27
modules/fedi/blobfox.nix Normal file
View file

@ -0,0 +1,27 @@
{
stdenvNoCC,
fetchurl,
unzip,
}:
stdenvNoCC.mkDerivation {
pname = "blobfox";
version = "2020.09.04";
src = fetchurl {
url = "https://volpeon.ink/emojis/blobfox/blobfox.zip";
hash = "";
};
sourceRoot = ".";
nativeBuildInputs = [ unzip ];
installPhase = ''
runHook preInstall
mkdir -p $out
cp *.png $out
runHook postInstall
'';
}