mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
vapoursynthPlugins.d2vsource: init at 1.2
This commit is contained in:
parent
338ecf0f19
commit
7571d01b72
|
@ -16,6 +16,7 @@ in
|
||||||
cnr2 = super.callPackage ./plugins/cnr2 { };
|
cnr2 = super.callPackage ./plugins/cnr2 { };
|
||||||
continuityfixer = super.callPackage ./plugins/continuityfixer { };
|
continuityfixer = super.callPackage ./plugins/continuityfixer { };
|
||||||
ctmf = super.callPackage ./plugins/ctmf { };
|
ctmf = super.callPackage ./plugins/ctmf { };
|
||||||
|
d2vsource = super.callPackage ./plugins/d2vsource { };
|
||||||
dctfilter = super.callPackage ./plugins/dctfilter { };
|
dctfilter = super.callPackage ./plugins/dctfilter { };
|
||||||
deblock = super.callPackage ./plugins/deblock { };
|
deblock = super.callPackage ./plugins/deblock { };
|
||||||
descale = super.callPackage ./plugins/descale { };
|
descale = super.callPackage ./plugins/descale { };
|
||||||
|
|
26
plugins/d2vsource/default.nix
Normal file
26
plugins/d2vsource/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ffmpeg, vapoursynth }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "d2vsource";
|
||||||
|
version = "1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dwbuiten";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1ax20qs1hba70r07pdw3gs4gylwb2ca4iz9ycmd9i5rvxaxy4hmp";
|
||||||
|
};
|
||||||
|
|
||||||
|
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
|
buildInputs = [ ffmpeg vapoursynth ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "D2V parser and decoder for VapourSynth";
|
||||||
|
homepage = "https://github.com/dubhater/vapoursynth-cnr2";
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue