12 stdenv.mkDerivation (finalAttrs: {
13 pname = "avisynthplus";
16 src = fetchFromGitHub {
18 repo = "AviSynthPlus";
19 rev = "v${finalAttrs.version}";
20 hash = "sha256-v/AErktcegdrwxDbD0DZ/ZAxgaZmkZD+qxR3EPFsT08=";
24 # Remove after next relaese
26 name = "fix-absolute-path.patch";
27 url = "https://github.com/AviSynth/AviSynthPlus/commit/818983691e962ec3e590fcad07032f8a139a6b16.patch";
28 hash = "sha256-4yUOnjtOroX+bhNUKbYz/giKaslzYdwPaaJWNkrTBr4=";
32 buildInputs = [ libdevil ];
34 nativeBuildInputs = [ cmake ];
37 updateScript = gitUpdater { rev-prefix = "v"; };
38 tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
42 description = "Improved version of the AviSynth frameserver";
43 homepage = "https://avs-plus.net/";
44 changelog = "https://github.com/AviSynth/AviSynthPlus/releases/tag/${finalAttrs.src.rev}";
45 license = licenses.gpl2Only;
46 pkgConfigModules = [ "avisynth" ];
47 platforms = platforms.unix;
48 maintainers = with maintainers; [ jopejoe1 ];