mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 17:02:25 +01:00
vapoursynthPlugins.awarpsharp2: init at 4
This commit is contained in:
parent
13ebe32810
commit
3f0957919a
|
@ -2,6 +2,7 @@ self: super: {
|
||||||
vapoursynthPlugins = super.recurseIntoAttrs {
|
vapoursynthPlugins = super.recurseIntoAttrs {
|
||||||
addgrain = super.callPackage ./plugins/addgrain { };
|
addgrain = super.callPackage ./plugins/addgrain { };
|
||||||
autocrop = super.callPackage ./plugins/autocrop { };
|
autocrop = super.callPackage ./plugins/autocrop { };
|
||||||
|
awarpsharp2 = super.callPackage ./plugins/awarpsharp2 { };
|
||||||
beziercurve = super.callPackage ./plugins/beziercurve { };
|
beziercurve = super.callPackage ./plugins/beziercurve { };
|
||||||
bifrost = super.callPackage ./plugins/bifrost { };
|
bifrost = super.callPackage ./plugins/bifrost { };
|
||||||
bilateral = super.callPackage ./plugins/bilateral { };
|
bilateral = super.callPackage ./plugins/bilateral { };
|
||||||
|
|
26
plugins/awarpsharp2/default.nix
Normal file
26
plugins/awarpsharp2/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "vapoursynth-awarpsharp2";
|
||||||
|
version = "4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dubhater";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "166z0n565kk11mn63nzzzagcy0vbbm73npmvpjzzy9fn7y1g87n0";
|
||||||
|
};
|
||||||
|
|
||||||
|
mesonFlags = [ "--libdir=${placeholder "out"}/lib/vapoursynth" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||||
|
buildInputs = [ vapoursynth ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "VapourSynth edge sharpener plugin";
|
||||||
|
homepage = https://github.com/dubhater/vapoursynth-awarpsharp2;
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = with maintainers; [ tadeokondrak ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue