Merge pull request #263793 from fleaz/update_nginx-videothumb
nginxModules.videothumb-extractor: unstable -> 1.0.0 and switch to ffmpeg-headless
This commit is contained in:
commit
e4f4ef7ce8
1 changed files with 8 additions and 6 deletions
|
@ -11,10 +11,11 @@
|
||||||
, curl
|
, curl
|
||||||
, expat
|
, expat
|
||||||
, fdk_aac
|
, fdk_aac
|
||||||
, ffmpeg
|
, ffmpeg-headless
|
||||||
, geoip
|
, geoip
|
||||||
, libbsd
|
, libbsd
|
||||||
, libiconv
|
, libiconv
|
||||||
|
, libjpeg
|
||||||
, libkrb5
|
, libkrb5
|
||||||
, libmaxminddb
|
, libmaxminddb
|
||||||
, libmodsecurity
|
, libmodsecurity
|
||||||
|
@ -959,17 +960,18 @@ let self = {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
video-thumbextractor = {
|
video-thumbextractor = rec {
|
||||||
name = "video-thumbextractor";
|
name = "video-thumbextractor";
|
||||||
|
version = "1.0.0";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
name = "video-thumbextractor";
|
name = "video-thumbextractor";
|
||||||
owner = "wandenberg";
|
owner = "wandenberg";
|
||||||
repo = "nginx-video-thumbextractor-module";
|
repo = "nginx-video-thumbextractor-module";
|
||||||
rev = "92b80642538eec4cfc98114dec5917b8d820e912";
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "0a8d9ifryhhnll7k7jcsf9frshk5yhpsgz7zgxdmw81wbz5hxklc";
|
hash = "sha256-F2cuzCbJdGYX0Zmz9MSXTB7x8+FBR6pPpXtLlDRCcj8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = [ ffmpeg ];
|
inputs = [ ffmpeg-headless libjpeg ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Extract thumbs from a video file";
|
description = "Extract thumbs from a video file";
|
||||||
|
@ -993,7 +995,7 @@ let self = {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = [ ffmpeg fdk_aac openssl libxml2 libiconv ];
|
inputs = [ ffmpeg-headless fdk_aac openssl libxml2 libiconv ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "VOD packager";
|
description = "VOD packager";
|
||||||
|
|
Loading…
Reference in a new issue