mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-13 04:32:29 +01:00
vapoursynthPlugins: stdenv.lib -> lib
stdenv.lib is deprecated and nixpkgs is currently switching to lib.
This commit is contained in:
parent
114620605c
commit
74b6413005
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-addgrain";
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
install -D libaddgrain${ext} $out/lib/vapoursynth/libaddgrain${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "AddGrain filter for VapourSynth";
|
||||
homepage = https://github.com/HomeOfVapourSynthEvolution/VapourSynth-AddGrain;
|
||||
license = licenses.gpl2;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, vapoursynth }:
|
||||
|
||||
let
|
||||
ext = stdenv.targetPlatform.extensions.sharedLibrary;
|
||||
|
@ -24,7 +24,7 @@ in stdenv.mkDerivation rec {
|
|||
install -D libautocrop${ext} $out/lib/vapoursynth/libautocrop${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Autocrop for VapourSynth";
|
||||
homepage = https://github.com/Irrational-Encoding-Wizardry/vapoursynth-autocrop;
|
||||
license = licenses.unfree; # no license
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-awarpsharp2";
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "VapourSynth edge sharpener plugin";
|
||||
homepage = https://github.com/dubhater/vapoursynth-awarpsharp2;
|
||||
license = licenses.isc;
|
||||
|
|
|
@ -33,7 +33,7 @@ in stdenv.mkDerivation rec {
|
|||
install -D VapourSynth-BezierCurve${ext} $out/lib/vapoursynth/VapourSynth-BezierCurve${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A bézier curve plugin for VapourSynth";
|
||||
homepage = https://github.com/kewenyu/VapourSynth-BezierCurve;
|
||||
license = licenses.mit;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-bifrost";
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Bifrost (temporal derainbowing) plugin for Vapoursynth";
|
||||
homepage = https://github.com/dubhater/vapoursynth-bifrost;
|
||||
license = licenses.unfree; # no license
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, which, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, which, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-bilateral";
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ which ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Bilateral filter for VapourSynth";
|
||||
homepage = https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Bilateral;
|
||||
license = licenses.gpl3;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth, fftwSinglePrec }:
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth, fftwSinglePrec }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-bm3d";
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||
install -D libbm3d${ext} $out/lib/vapoursynth/libbm3d${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "BM3D denoising filter for VapourSynth";
|
||||
homepage = https://github.com/HomeOfVapourSynthEvolution/VapourSynth-BM3D;
|
||||
license = licenses.mit;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-cnr2";
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Temporal chroma denoiser for VapourSynth";
|
||||
homepage = https://github.com/dubhater/vapoursynth-cnr2;
|
||||
license = licenses.gpl2;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, vapoursynth }:
|
||||
|
||||
let
|
||||
ext = stdenv.targetPlatform.extensions.sharedLibrary;
|
||||
|
@ -24,7 +24,7 @@ in stdenv.mkDerivation rec {
|
|||
install -D continuity${ext} $out/lib/vapoursynth/continuity${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Continuity Fixer port for Vapoursynth";
|
||||
homepage = https://github.com/MonoS/VS-ContinuityFixer;
|
||||
license = licenses.unfree; # no license
|
||||
|
|
|
@ -27,7 +27,7 @@ in stdenv.mkDerivation rec {
|
|||
install -D descale.py $out/lib/${python.libPrefix}/site-packages/descale.py
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "VapourSynth plugin to undo upscaling";
|
||||
homepage = https://github.com/Irrational-Encoding-Wizardry/vapoursynth-descale;
|
||||
license = licenses.wtfpl;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-eedi2";
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
install -D libeedi2${ext} $out/lib/vapoursynth/libeedi2${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "EEDI2 filter for VapourSynth";
|
||||
homepage = https://github.com/HomeOfVapourSynthEvolution/VapourSynth-EEDI2;
|
||||
license = licenses.gpl2;
|
||||
|
|
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
install -D libeedi3m${ext} $out/lib/vapoursynth/libeedi3m${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Renewed EEDI3 filter for VapourSynth";
|
||||
homepage = https://github.com/HomeOfVapourSynthEvolution/VapourSynth-EEDI3;
|
||||
license = licenses.gpl2;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, wafHook, python3, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, wafHook, python3, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "flash3kyuu_deband";
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ wafHook python3 ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A deband library and filter for AviSynth/VapourSynth";
|
||||
homepage = https://github.com/SAPikachu/flash3kyuu_deband;
|
||||
license = licenses.gpl3;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fmtconv";
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Format conversion tools for VapourSynth";
|
||||
homepage = https://github.com/EleonoreMizo/fmtconv;
|
||||
license = licenses.wtfpl;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, which, pkg-config, vapoursynth, boost, opencl-headers, ocl-icd }:
|
||||
{ lib, stdenv, fetchFromGitHub, which, pkg-config, vapoursynth, boost, opencl-headers, ocl-icd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "knlmeanscl";
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ which pkg-config ];
|
||||
buildInputs = [ vapoursynth boost opencl-headers ocl-icd ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "An optimized OpenCL implementation of the Non-local means de-noising algorithm";
|
||||
homepage = https://github.com/Khanattila/KNLMeansCL;
|
||||
license = licenses.gpl3;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth, yasm }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth, yasm }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-nnedi3";
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
buildInputs = [ vapoursynth yasm ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "nnedi3 filter for VapourSynth";
|
||||
homepage = https://github.com/dubhater/vapoursynth-nnedi3;
|
||||
license = licenses.gpl2;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-retinex";
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
install -D libretinex${ext} $out/lib/vapoursynth/libretinex${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Retinex algorithm for VapourSynth";
|
||||
homepage = https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Retinex;
|
||||
license = licenses.gpl3;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-sangnom";
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "VapourSynth Single Field Deinterlacer";
|
||||
homepage = https://github.com/dubhater/vapoursynth-sangnom;
|
||||
license = licenses.mit;
|
||||
|
|
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
install -D libtcanny${ext} $out/lib/vapoursynth/libtcanny${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "TCanny filter for VapourSynth";
|
||||
homepage = https://github.com/HomeOfVapourSynthEvolution/VapourSynth-TCanny;
|
||||
license = licenses.gpl2;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, which, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, which, vapoursynth }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vapoursynth-tnlmeans";
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ which ];
|
||||
buildInputs = [ vapoursynth ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "An implementation of the NL-means denoising algorithm";
|
||||
homepage = https://github.com/VFR-maniac/VapourSynth-TNLMeans;
|
||||
license = licenses.lgpl2;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, pkg-config, vapoursynth }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, vapoursynth }:
|
||||
|
||||
let
|
||||
ext = stdenv.targetPlatform.extensions.sharedLibrary;
|
||||
|
@ -26,7 +26,7 @@ in stdenv.mkDerivation rec {
|
|||
install -D libwwxd${ext} $out/lib/vapoursynth/libwwxd${ext}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Xvid-like scene change detection for VapourSynth";
|
||||
homepage = https://github.com/dubhater/vapoursynth-wwxd;
|
||||
license = licenses.unfree; # no license
|
||||
|
|
Loading…
Reference in a new issue