mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-06 01:02:26 +01:00
27 lines
731 B
Nix
27 lines
731 B
Nix
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "vapoursynth-cnr2";
|
||
|
version = "1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "dubhater";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1l77vzmaxqkdmmq1sbpmgn05lvaz06q12wg1rbzyasq34kic47ch";
|
||
|
};
|
||
|
|
||
|
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||
|
buildInputs = [ vapoursynth ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Temporal chroma denoiser for VapourSynth";
|
||
|
homepage = https://github.com/dubhater/vapoursynth-cnr2;
|
||
|
license = licenses.gpl2;
|
||
|
maintainers = with maintainers; [ tadeokondrak ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|