2021-01-22 17:10:08 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which, vapoursynth }:
|
2019-06-26 01:40:02 +02:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
2021-01-22 17:10:08 +01:00
|
|
|
meta = with lib; {
|
2019-06-26 01:40:02 +02:00
|
|
|
description = "An implementation of the NL-means denoising algorithm";
|
2021-01-22 17:22:37 +01:00
|
|
|
homepage = "https://github.com/VFR-maniac/VapourSynth-TNLMeans";
|
2019-06-26 01:40:02 +02:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|