mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
vapoursynthPlugins.remap: init at 1.1
This commit is contained in:
parent
f477eb3859
commit
ed36a8a002
|
@ -37,6 +37,7 @@ in
|
||||||
nnedi3 = super.callPackage ./plugins/nnedi3 { };
|
nnedi3 = super.callPackage ./plugins/nnedi3 { };
|
||||||
nnedi3cl = super.callPackage ./plugins/nnedi3cl { };
|
nnedi3cl = super.callPackage ./plugins/nnedi3cl { };
|
||||||
placebo = super.callPackage ./plugins/placebo { };
|
placebo = super.callPackage ./plugins/placebo { };
|
||||||
|
remap = super.callPackage ./plugins/remap { };
|
||||||
retinex = super.callPackage ./plugins/retinex { };
|
retinex = super.callPackage ./plugins/retinex { };
|
||||||
sangnom = super.callPackage ./plugins/sangnom { };
|
sangnom = super.callPackage ./plugins/sangnom { };
|
||||||
scxvid = super.callPackage ./plugins/scxvid { };
|
scxvid = super.callPackage ./plugins/scxvid { };
|
||||||
|
|
24
plugins/remap/default.nix
Normal file
24
plugins/remap/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue