vapoursynthPlugins.dctfilter: init at r2.1

pull/2/head
Simon Bruder 2021-01-23 11:52:49 +01:00 committed by Tadeo Kondrak
parent 883ba6026e
commit 76dcd1236d
2 changed files with 30 additions and 0 deletions

View File

@ -10,6 +10,7 @@ self: super: {
bm3d = super.callPackage ./plugins/bm3d { };
cnr2 = super.callPackage ./plugins/cnr2 { };
continuityfixer = super.callPackage ./plugins/continuityfixer { };
dctfilter = super.callPackage ./plugins/dctfilter { };
descale = super.callPackage ./plugins/descale { };
eedi2 = super.callPackage ./plugins/eedi2 { };
eedi3m = super.callPackage ./plugins/eedi3m { };

View File

@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, fftwFloat, vapoursynth }:
stdenv.mkDerivation rec {
pname = "VapourSynth-DCTFilter";
version = "r2.1";
src = fetchFromGitHub {
owner = "HomeOfVapourSynthEvolution";
repo = pname;
rev = version;
sha256 = "032l2dh28jznplh8ww8hzr0fmm6hx34f0k29gqyyjksmn3ympr00";
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ fftwFloat vapoursynth ];
postPatch = ''
substituteInPlace meson.build \
--replace "vapoursynth_dep.get_pkgconfig_variable('libdir')" "get_option('libdir')"
'';
meta = with lib; {
description = "Renewed DCTFilter filter plugin for VapourSynth";
homepage = "https://github.com/HomeOfVapourSynthEvolution/VapourSynth-DCTFilter";
license = licenses.mit;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}