added stuff
This commit is contained in:
parent
937f28770d
commit
236b8c2a6b
907 changed files with 70990 additions and 0 deletions
26
nyx/flake/pkgs/anime4k.nix
Normal file
26
nyx/flake/pkgs/anime4k.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue