added stuff

This commit is contained in:
vali 2024-04-09 23:11:33 +02:00
commit 236b8c2a6b
907 changed files with 70990 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
lib,
stdenvNoCC,
fetchzip,
}:
stdenvNoCC.mkDerivation rec {
pname = "anime4k";
version = "4.0.1";
src = fetchzip {
url = "https://github.com/bloc97/Anime4K/releases/download/v${version}/Anime4K_v4.0.zip";
stripRoot = false;
sha256 = "18x5q7zvkf5l0b2phh70ky6m99fx1pi6mhza4041b5hml7w987pl";
};
installPhase = ''
mkdir $out
cp *.glsl $out
'';
meta = {
description = "A High-Quality Real Time Upscaler for Anime Video";
homepage = "https://github.com/bloc97/Anime4K";
license = lib.licenses.mit;
};
}