temporalsoften2: init at unstable-2019-03-25

pull/18/head
Aidan Gauland 2022-09-25 16:35:24 +13:00 committed by Tadeo Kondrak
parent 9efdaa04ef
commit cad7e80c00
2 changed files with 39 additions and 0 deletions

View File

@ -58,6 +58,7 @@ in
scxvid = prev.callPackage ./plugins/scxvid { };
subtext = prev.callPackage ./plugins/subtext { };
tcanny = prev.callPackage ./plugins/tcanny { };
temporalsoften2 = prev.callPackage ./plugins/temporalsoften2 { };
tnlmeans = prev.callPackage ./plugins/tnlmeans { };
ttempsmooth = prev.callPackage ./plugins/ttempsmooth { };
vivtc = prev.callPackage ./plugins/vivtc { };

View 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;
};
}