vapoursynthPlugins.imwri: init at R1

pull/7/head
Simon Bruder 2021-10-15 18:35:48 +02:00 committed by Simon Bruder
parent 154b0b8eeb
commit 1ca5c6cef3
2 changed files with 30 additions and 0 deletions

View File

@ -32,6 +32,7 @@ in
fmtconv = prev.callPackage ./plugins/fmtconv { };
histogram = prev.callPackage ./plugins/histogram { };
hqdn3d = prev.callPackage ./plugins/hqdn3d { };
imwri = prev.callPackage ./plugins/imwri { };
knlmeanscl = prev.callPackage ./plugins/knlmeanscl { };
lsmashsource = prev.callPackage ./plugins/lsmashsource { };
median = prev.callPackage ./plugins/median { };

29
plugins/imwri/default.nix Normal file
View File

@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, imagemagick, libheif, vapoursynth }:
stdenv.mkDerivation rec {
pname = "vs-imwri";
version = "R1";
src = fetchFromGitHub {
owner = "vapoursynth";
repo = pname;
rev = version;
sha256 = "sha256-3nNX7OxAwHPJ6JwaTZJTH13eWktPI/XBmEC/OETCun4=";
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ imagemagick libheif vapoursynth ];
postPatch = ''
substituteInPlace meson.build \
--replace "vapoursynth_dep.get_variable(pkgconfig: 'libdir')" "get_option('libdir')"
'';
meta = with lib; {
description = "Image reader and writer for VapourSynth using the ImageMagick library";
homepage = "https://github.com/vapoursynth/vs-imwri";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}