diff --git a/default.nix b/default.nix index 44964ff..d4d32e9 100644 --- a/default.nix +++ b/default.nix @@ -10,6 +10,7 @@ self: super: { bm3d = super.callPackage ./plugins/bm3d { }; cnr2 = super.callPackage ./plugins/cnr2 { }; continuityfixer = super.callPackage ./plugins/continuityfixer { }; + dctfilter = super.callPackage ./plugins/dctfilter { }; descale = super.callPackage ./plugins/descale { }; eedi2 = super.callPackage ./plugins/eedi2 { }; eedi3m = super.callPackage ./plugins/eedi3m { }; diff --git a/plugins/dctfilter/default.nix b/plugins/dctfilter/default.nix new file mode 100644 index 0000000..032ec5a --- /dev/null +++ b/plugins/dctfilter/default.nix @@ -0,0 +1,29 @@ +{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, fftwFloat, vapoursynth }: + +stdenv.mkDerivation rec { + pname = "VapourSynth-DCTFilter"; + version = "r2.1"; + + src = fetchFromGitHub { + owner = "HomeOfVapourSynthEvolution"; + repo = pname; + rev = version; + sha256 = "032l2dh28jznplh8ww8hzr0fmm6hx34f0k29gqyyjksmn3ympr00"; + }; + + nativeBuildInputs = [ meson ninja pkg-config ]; + buildInputs = [ fftwFloat vapoursynth ]; + + postPatch = '' + substituteInPlace meson.build \ + --replace "vapoursynth_dep.get_pkgconfig_variable('libdir')" "get_option('libdir')" + ''; + + meta = with lib; { + description = "Renewed DCTFilter filter plugin for VapourSynth"; + homepage = "https://github.com/HomeOfVapourSynthEvolution/VapourSynth-DCTFilter"; + license = licenses.mit; + maintainers = with maintainers; [ sbruder ]; + platforms = platforms.all; + }; +}