mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 17:02:25 +01:00
vapoursynthPlugins.fft3dfilter: init at unstable-2020-08-05
This commit is contained in:
parent
b0944e0540
commit
d6fd1d9ee8
|
@ -18,6 +18,7 @@ self: super: {
|
||||||
eedi3m = super.callPackage ./plugins/eedi3m { };
|
eedi3m = super.callPackage ./plugins/eedi3m { };
|
||||||
f3kdb = super.callPackage ./plugins/f3kdb { };
|
f3kdb = super.callPackage ./plugins/f3kdb { };
|
||||||
ffms2 = super.ffms;
|
ffms2 = super.ffms;
|
||||||
|
fft3dfilter = super.callPackage ./plugins/fft3dfilter { };
|
||||||
fmtconv = super.callPackage ./plugins/fmtconv { };
|
fmtconv = super.callPackage ./plugins/fmtconv { };
|
||||||
histogram = super.callPackage ./plugins/histogram { };
|
histogram = super.callPackage ./plugins/histogram { };
|
||||||
knlmeanscl = super.callPackage ./plugins/knlmeanscl { };
|
knlmeanscl = super.callPackage ./plugins/knlmeanscl { };
|
||||||
|
|
29
plugins/fft3dfilter/default.nix
Normal file
29
plugins/fft3dfilter/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, fftwFloat, vapoursynth }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "VapourSynth-FFT3DFilter";
|
||||||
|
version = "unstable-2020-08-05"; # last version before requiring v4 api
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "myrsloik";
|
||||||
|
repo = pname;
|
||||||
|
rev = "64323f0fdee4dd4fe429ee6287906dbae8e7571c";
|
||||||
|
sha256 = "0s2wf1i733srsqgz6fhs7kyra55pib9n5xkx9hpqjjv4sxlnfc9l";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 = "A VapourSynth port of FFT3DFilter";
|
||||||
|
homepage = "https://github.com/myrsloik/VapourSynth-FFT3DFilter";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue