mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
temporalmedian: init at 1
This commit is contained in:
parent
f13b913fdc
commit
9da59ca532
|
@ -59,6 +59,7 @@ in
|
||||||
scxvid = prev.callPackage ./plugins/scxvid { };
|
scxvid = prev.callPackage ./plugins/scxvid { };
|
||||||
subtext = prev.callPackage ./plugins/subtext { };
|
subtext = prev.callPackage ./plugins/subtext { };
|
||||||
tcanny = prev.callPackage ./plugins/tcanny { };
|
tcanny = prev.callPackage ./plugins/tcanny { };
|
||||||
|
temporalmedian = prev.callPackage ./plugins/temporalmedian { };
|
||||||
temporalsoften2 = prev.callPackage ./plugins/temporalsoften2 { };
|
temporalsoften2 = prev.callPackage ./plugins/temporalsoften2 { };
|
||||||
tnlmeans = prev.callPackage ./plugins/tnlmeans { };
|
tnlmeans = prev.callPackage ./plugins/tnlmeans { };
|
||||||
ttempsmooth = prev.callPackage ./plugins/ttempsmooth { };
|
ttempsmooth = prev.callPackage ./plugins/ttempsmooth { };
|
||||||
|
|
38
plugins/temporalmedian/default.nix
Normal file
38
plugins/temporalmedian/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, vapoursynth
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "vapoursynth-temporalmedian";
|
||||||
|
version = "1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dubhater";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-UMYBA0kAGiNdcacV25O0pFgbt8bYbhS19u6edZfugYE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ vapoursynth ];
|
||||||
|
|
||||||
|
mesonFlags = [ "--libdir=${placeholder "out"}/lib/vapoursynth" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Temporal denoising plugin for VapourSynth";
|
||||||
|
homepage = "https://github.com/dubhater/vapoursynth-temporalmedian";
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = with maintainers; [ aidalgol ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue