mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-16 14:12:26 +01:00
28 lines
840 B
Nix
28 lines
840 B
Nix
|
{ stdenv, fetchFromGitHub, which, pkg-config, vapoursynth, boost, opencl-headers, ocl-icd }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "knlmeanscl";
|
||
|
version = "1.1.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Khanattila";
|
||
|
repo = "KNLMeansCL";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "035gcd3ppgljinlhh7k1kfr1394isgavwy9h6znshpl9npgi67cd";
|
||
|
};
|
||
|
|
||
|
dontAddPrefix = true;
|
||
|
configureFlags = [ "--install=$(out)/lib/vapoursynth" ];
|
||
|
|
||
|
nativeBuildInputs = [ which pkg-config ];
|
||
|
buildInputs = [ vapoursynth boost opencl-headers ocl-icd ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "An optimized OpenCL implementation of the Non-local means de-noising algorithm";
|
||
|
homepage = https://github.com/Khanattila/KNLMeansCL;
|
||
|
license = licenses.gpl3;
|
||
|
maintainers = with maintainers; [ tadeokondrak ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|