vapoursynthPlugins.msmoosh: init at 1.1

pull/2/head
Simon Bruder 2021-01-23 13:42:38 +01:00 committed by Tadeo Kondrak
parent 7b915f04d4
commit 33111a0dc2
2 changed files with 27 additions and 0 deletions

View File

@ -27,6 +27,7 @@ self: super: {
knlmeanscl = super.callPackage ./plugins/knlmeanscl { };
lsmashsource = super.callPackage ./plugins/lsmashsource { };
median = super.callPackage ./plugins/median { };
msmoosh = super.callPackage ./plugins/msmoosh { };
mvtools = super.vapoursynth-mvtools;
nnedi3 = super.callPackage ./plugins/nnedi3 { };
nnedi3cl = super.callPackage ./plugins/nnedi3cl { };

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
stdenv.mkDerivation rec {
pname = "vapoursynth-msmoosh";
version = "1.1";
src = fetchFromGitHub {
owner = "dubhater";
repo = pname;
rev = "v${version}";
sha256 = "1lqz5xml3j2fs6acrihf1sfhf1397kxsra9j6ky00wll8klcnv0d";
};
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ vapoursynth ];
meta = with lib; {
description = "A VapourSynth plugin providing MSharpen and MSmooth";
homepage = "https://github.com/dubhater/vapoursynth-msmoosh";
license = licenses.gpl2Only;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}