mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
temporalsoften2: init at unstable-2019-03-25
This commit is contained in:
parent
9efdaa04ef
commit
cad7e80c00
|
@ -58,6 +58,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 { };
|
||||||
|
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 { };
|
||||||
vivtc = prev.callPackage ./plugins/vivtc { };
|
vivtc = prev.callPackage ./plugins/vivtc { };
|
||||||
|
|
38
plugins/temporalsoften2/default.nix
Normal file
38
plugins/temporalsoften2/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, vapoursynth
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "vapoursynth-temporalsoften2";
|
||||||
|
version = "unstable-2019-03-25";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dubhater";
|
||||||
|
repo = pname;
|
||||||
|
rev = "a133670676a311dde31b0eb1a771bbd94ffb1235";
|
||||||
|
sha256 = "sha256-RxFSDmwzBuO7EfxryV2UZRAjGCW3JcGtcCX+mDnAYb8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ vapoursynth ];
|
||||||
|
|
||||||
|
mesonFlags = [ "--libdir=${placeholder "out"}/lib/vapoursynth" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "TemporalSoften filter plugin for VapourSynth";
|
||||||
|
homepage = "https://github.com/dubhater/vapoursynth-temporalsoften2";
|
||||||
|
license = licenses.lgpl2;
|
||||||
|
maintainers = with maintainers; [ aidalgol ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue