vs-overlay/plugins/beziercurve/default.nix
Simon Bruder 97d1c952c8 vapoursynthPlugins.beziercurve: r2 -> r3
This also switches to meson as the build system.
2021-05-29 16:30:09 -06:00

25 lines
691 B
Nix

{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
stdenv.mkDerivation rec {
pname = "vapoursynth-beziercurve";
version = "r3";
src = fetchFromGitHub {
owner = "kewenyu";
repo = "VapourSynth-BezierCurve";
rev = version;
sha256 = "1513ndj7sxwihyxx6x9ciyd8jhw9vs6lhzw7fpl7cz7fdj49wwi6";
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ vapoursynth ];
meta = with lib; {
description = "A bézier curve plugin for VapourSynth";
homepage = "https://github.com/kewenyu/VapourSynth-BezierCurve";
license = licenses.mit;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all;
};
}