mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-04 16:22:29 +01:00
25 lines
691 B
Nix
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;
|
|
};
|
|
}
|