vs-overlay/plugins/tnlmeans/default.nix
Tadeo Kondrak e94a197efe
initial commit
vapoursynthPlugins.addgrain: init at r7
vapoursynthPlugins.autocrop: init at 0.1
vapoursynthPlugins.beziercurve: init at r2
vapoursynthPlugins.bifrost: init at 2.2
vapoursynthPlugins.bilateral: init at r3
vapoursynthPlugins.bm3d: init at r8
vapoursynthPlugins.continuityfixer: init at 6.1
vapoursynthPlugins.descale: init at r2
vapoursynthPlugins.eedi2: init at r7.1
vapoursynthPlugins.eedi3m: init at r4
vapoursynthPlugins.f3kdb: init at 2.0.0-1
vapoursynthPlugins.ffms2: init as alias
vapoursynthPlugins.fmtconv: init at r20
vapoursynthPlugins.knlmeanscl: init at 1.1.1
vapoursynthPlugins.lsmashsource: init at unstable-2017-08-12
vapoursynthPlugins.nnedi3: init at 11
vapoursynthPlugins.retinex: init at r4
vapoursynthPlugins.sangnom: init at r41
vapoursynthPlugins.tcanny: init at r12
vapoursynthPlugins.tnlmeans: init at unstable-2015-02-25
vapoursynthPlugins.wwxd: init at 1.0
2019-06-25 17:40:02 -06:00

29 lines
768 B
Nix

{ stdenv, fetchFromGitHub, which, vapoursynth }:
stdenv.mkDerivation rec {
pname = "vapoursynth-tnlmeans";
version = "unstable-2015-02-25";
src = fetchFromGitHub {
owner = "VFR-maniac";
repo = "VapourSynth-TNLMeans";
rev = "22a40afaf78b6932800f552c43edc510da2d50a3";
sha256 = "02abjb5dhsvgng7y4ybm96zbls2b4pzjwr6rqkcarx32malqc3jl";
};
preConfigure = ''
patchShebangs .
'';
nativeBuildInputs = [ which ];
buildInputs = [ vapoursynth ];
meta = with stdenv.lib; {
description = "An implementation of the NL-means denoising algorithm";
homepage = https://github.com/VFR-maniac/VapourSynth-TNLMeans;
license = licenses.lgpl2;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all;
};
}