mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-05 00:32:27 +01:00
vapoursynthPlugins.scxvid: init at 1
This commit is contained in:
parent
c584377c62
commit
6cc24a5a6c
|
@ -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 { };
|
||||
|
|
26
plugins/scxvid/default.nix
Normal file
26
plugins/scxvid/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue