mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
vapoursynthPlugins.nnedi3cl: init at r8
This commit is contained in:
parent
5b7075d0e0
commit
cd3dc48577
|
@ -21,6 +21,7 @@ self: super: {
|
|||
median = super.callPackage ./plugins/median { };
|
||||
mvtools = super.vapoursynth-mvtools;
|
||||
nnedi3 = super.callPackage ./plugins/nnedi3 { };
|
||||
nnedi3cl = super.callPackage ./plugins/nnedi3cl { };
|
||||
retinex = super.callPackage ./plugins/retinex { };
|
||||
sangnom = super.callPackage ./plugins/sangnom { };
|
||||
tcanny = super.callPackage ./plugins/tcanny { };
|
||||
|
|
33
plugins/nnedi3cl/default.nix
Normal file
33
plugins/nnedi3cl/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, boost, ocl-icd, opencl-headers, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "VapourSynth-NNEDI3CL";
|
||||
version = "r8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "HomeOfVapourSynthEvolution";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0j99ihxy295plk1x5flgwzjkcjwyzqdmxnxmda9r632ksq9flvyd";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
buildInputs = [ boost ocl-icd opencl-headers vapoursynth ];
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/issues/86131
|
||||
BOOST_INCLUDEDIR = "${lib.getDev boost}/include";
|
||||
BOOST_LIBRARYDIR = "${lib.getLib boost}/lib";
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace meson.build \
|
||||
--replace "vapoursynth_dep.get_pkgconfig_variable('libdir')" "get_option('libdir')"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "An OpenCL accelerated nnedi3 filter for VapourSynth";
|
||||
homepage = "https://github.com/HomeOfVapourSynthEvolution/VapourSynth-NNEDI3CL";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ sbruder ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue