mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
vapoursynthPlugins.fluxsmooth: init at 2
This commit is contained in:
parent
3d1b0b91ef
commit
e3c8a00053
|
@ -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 { };
|
||||
|
|
26
plugins/fluxsmooth/default.nix
Normal file
26
plugins/fluxsmooth/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue