mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
vapoursynthPlugins.msmoosh: init at 1.1
This commit is contained in:
parent
7b915f04d4
commit
33111a0dc2
|
@ -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 { };
|
||||
|
|
26
plugins/msmoosh/default.nix
Normal file
26
plugins/msmoosh/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue