vapoursynthPlugins.remap: init at 1.1

pull/2/head
Simon Bruder 2021-05-16 10:29:08 +02:00 committed by Tadeo Kondrak
parent f477eb3859
commit ed36a8a002
2 changed files with 25 additions and 0 deletions

View File

@ -37,6 +37,7 @@ in
nnedi3 = super.callPackage ./plugins/nnedi3 { };
nnedi3cl = super.callPackage ./plugins/nnedi3cl { };
placebo = super.callPackage ./plugins/placebo { };
remap = super.callPackage ./plugins/remap { };
retinex = super.callPackage ./plugins/retinex { };
sangnom = super.callPackage ./plugins/sangnom { };
scxvid = super.callPackage ./plugins/scxvid { };

24
plugins/remap/default.nix Normal file
View File

@ -0,0 +1,24 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
stdenv.mkDerivation rec {
pname = "Vapoursynth-RemapFrames";
version = "1.1";
src = fetchFromGitHub {
owner = "Irrational-Encoding-Wizardry";
repo = pname;
rev = "v${version}";
sha256 = "1ki5yvlrw1x3hr3jb9mi7va66kl6lq5f2aynylz5lsx2f14iavra";
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ vapoursynth ];
meta = with lib; {
description = "Vapoursynth port of RemapFrames";
homepage = "https://github.com/Irrational-Encoding-Wizardry/Vapoursynth-RemapFrames";
license = licenses.bsd2;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}