vapoursynthPlugins.scxvid: init at 1

pull/2/head
Simon Bruder 2021-05-16 10:15:04 +02:00 committed by Tadeo Kondrak
parent c584377c62
commit 6cc24a5a6c
2 changed files with 27 additions and 0 deletions

View File

@ -39,6 +39,7 @@ in
placebo = super.callPackage ./plugins/placebo { };
retinex = super.callPackage ./plugins/retinex { };
sangnom = super.callPackage ./plugins/sangnom { };
scxvid = super.callPackage ./plugins/scxvid { };
tcanny = super.callPackage ./plugins/tcanny { };
tnlmeans = super.callPackage ./plugins/tnlmeans { };
ttempsmooth = super.callPackage ./plugins/ttempsmooth { };

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth, xvidcore }:
stdenv.mkDerivation rec {
pname = "vapoursynth-scxvid";
version = "1";
src = fetchFromGitHub {
owner = "dubhater";
repo = pname;
rev = "v${version}";
sha256 = "13afl3bsg4fx3w5myrbsd62sf76s9qhsggfn2fjai9vfq61lnb0f";
};
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ vapoursynth xvidcore ];
meta = with lib; {
description = "Scene change detection plugin for VapourSynth using xvid";
homepage = "https://github.com/dubhater/vapoursynth-scxvid";
license = licenses.gpl2Only;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}