mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-04 16:22:29 +01:00
30 lines
932 B
Nix
30 lines
932 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, fftwFloat, vapoursynth }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "VapourSynth-FFT3DFilter";
|
|
version = "unstable-2020-08-05"; # last version before requiring v4 api
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "myrsloik";
|
|
repo = pname;
|
|
rev = "64323f0fdee4dd4fe429ee6287906dbae8e7571c";
|
|
sha256 = "0s2wf1i733srsqgz6fhs7kyra55pib9n5xkx9hpqjjv4sxlnfc9l";
|
|
};
|
|
|
|
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 = "A VapourSynth port of FFT3DFilter";
|
|
homepage = "https://github.com/myrsloik/VapourSynth-FFT3DFilter";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ sbruder ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|