nix-config/modules/fedi/neocat.nix
2025-03-15 12:21:49 +01:00

27 lines
428 B
Nix

{
stdenvNoCC,
fetchurl,
unzip,
}:
stdenvNoCC.mkDerivation {
pname = "neocat";
version = "2023.08.10";
src = fetchurl {
url = "https://volpeon.ink/emojis/neocat/neocat.zip";
hash = "sha256-tcyeYfBEi3vahrCQrQOaXXvz/jdHYS8d/bdt4jFSrCo=";
};
sourceRoot = ".";
nativeBuildInputs = [unzip];
installPhase = ''
runHook preInstall
mkdir -p $out
cp *.png $out
runHook postInstall
'';
}