fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / an / anime4k / package.nix
blob785227dfdfa76f51d7e284d837a1c00bdee1b63b
2   fetchFromGitHub,
3   lib,
4   stdenvNoCC,
5 }:
7 stdenvNoCC.mkDerivation (finalAttrs: {
8   pname = "anime4k";
9   version = "4.0.1";
11   src = fetchFromGitHub {
12     owner = "bloc97";
13     repo = "Anime4k";
14     rev = "v${finalAttrs.version}";
15     hash = "sha256-OQWJWcDpwmnJJ/kc4uEReaO74dYFlxNQwf33E5Oagb0=";
16   };
18   installPhase = ''
19     runHook preInstall
21     install -Dm644 glsl/*/*.glsl -t $out
23     runHook postInstall
24   '';
26   meta = with lib; {
27     description = "High-quality real time upscaler for anime";
28     homepage = "https://github.com/bloc97/Anime4K";
29     license = licenses.mit;
30     maintainers = with maintainers; [ surfaceflinger ];
31     platforms = platforms.all;
32   };