fedi emojis: source local

This commit is contained in:
twoneis 2025-03-23 22:43:44 +01:00
parent 3809dce1c5
commit d45e4e9d02
905 changed files with 47 additions and 100 deletions

View file

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