mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 17:02:25 +01:00
vapoursynthPlugins.histogram: init at 2
This commit is contained in:
parent
3fe9ef81ee
commit
7148a48328
|
@ -15,6 +15,7 @@ self: super: {
|
||||||
f3kdb = super.callPackage ./plugins/f3kdb { };
|
f3kdb = super.callPackage ./plugins/f3kdb { };
|
||||||
ffms2 = super.ffms;
|
ffms2 = super.ffms;
|
||||||
fmtconv = super.callPackage ./plugins/fmtconv { };
|
fmtconv = super.callPackage ./plugins/fmtconv { };
|
||||||
|
histogram = super.callPackage ./plugins/histogram { };
|
||||||
knlmeanscl = super.callPackage ./plugins/knlmeanscl { };
|
knlmeanscl = super.callPackage ./plugins/knlmeanscl { };
|
||||||
lsmashsource = super.callPackage ./plugins/lsmashsource { };
|
lsmashsource = super.callPackage ./plugins/lsmashsource { };
|
||||||
mvtools = super.vapoursynth-mvtools;
|
mvtools = super.vapoursynth-mvtools;
|
||||||
|
|
26
plugins/histogram/default.nix
Normal file
26
plugins/histogram/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, vapoursynth }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "vapoursynth-histogram";
|
||||||
|
version = "2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dubhater";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1wdjf44cl6sw7cqiv92q20gnn5bqlbln6pqxf41db7arjv93dh9l";
|
||||||
|
};
|
||||||
|
|
||||||
|
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||||
|
buildInputs = [ vapoursynth ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Histogram plugin for VapourSynth";
|
||||||
|
homepage = "https://github.com/dubhater/vapoursynth-histogram";
|
||||||
|
license = licenses.gpl2Plus; # https://github.com/dubhater/vapoursynth-histogram/issues/2
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue