vapoursynthPlugins.fluxsmooth: init at 2

pull/2/head
Simon Bruder 2021-01-23 18:07:10 +01:00 committed by Tadeo Kondrak
parent 3d1b0b91ef
commit e3c8a00053
2 changed files with 27 additions and 0 deletions

View File

@ -25,6 +25,7 @@ in
f3kdb = super.callPackage ./plugins/f3kdb { };
ffms2 = super.ffms;
fft3dfilter = super.callPackage ./plugins/fft3dfilter { };
fluxsmooth = super.callPackage ./plugins/fluxsmooth { };
fmtconv = super.callPackage ./plugins/fmtconv { };
histogram = super.callPackage ./plugins/histogram { };
hqdn3d = super.callPackage ./plugins/hqdn3d { };

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
stdenv.mkDerivation rec {
pname = "vapoursynth-fluxsmooth";
version = "2";
src = fetchFromGitHub {
owner = "dubhater";
repo = pname;
rev = "v${version}";
sha256 = "0z227yiyd5dss9556n024g71l5hp4ghbdwfs88han2crff6rfpdv";
};
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ vapoursynth ];
meta = with lib; {
description = "A vapoursynth filter plugin for smoothing of fluctuations";
homepage = "https://github.com/dubhater/vapoursynth-fluxsmooth";
license = licenses.unfree; # no license for current version (base is public domain)
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}