2022-10-24 09:25:59 +00:00
|
|
|
{ fetchFromGitHub, lib, stdenv, ffmpeg-headless, cmake, libpng, pkg-config, libjpeg
|
2015-05-04 23:58:33 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ffmpegthumbnailer";
|
2022-02-09 17:37:51 +00:00
|
|
|
version = "unstable-2022-02-18";
|
2015-05-04 23:58:33 +00:00
|
|
|
|
2017-03-12 20:00:42 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dirkvdb";
|
|
|
|
repo = "ffmpegthumbnailer";
|
2022-02-09 17:37:51 +00:00
|
|
|
rev = "3db9fe895b2fa656bb40ddb7a62e27604a688171";
|
|
|
|
sha256 = "0606pbg391l4s8mpyyalm9zrcnm75fwqdlrxy2gif9n21i2fm3rc";
|
2015-05-04 23:58:33 +00:00
|
|
|
};
|
|
|
|
|
2020-12-26 13:57:43 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2022-10-24 09:25:59 +00:00
|
|
|
buildInputs = [ ffmpeg-headless libpng libjpeg ];
|
2020-12-26 13:57:43 +00:00
|
|
|
cmakeFlags = [ "-DENABLE_THUMBNAILER=ON" ];
|
2015-05-04 23:58:33 +00:00
|
|
|
|
2022-05-09 12:58:02 +00:00
|
|
|
# https://github.com/dirkvdb/ffmpegthumbnailer/issues/215
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace libffmpegthumbnailer.pc.in \
|
|
|
|
--replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dirkvdb/ffmpegthumbnailer";
|
2015-05-04 23:58:33 +00:00
|
|
|
description = "A lightweight video thumbnailer";
|
2020-12-26 13:57:43 +00:00
|
|
|
longDescription = "FFmpegthumbnailer is a lightweight video
|
2015-05-04 23:58:33 +00:00
|
|
|
thumbnailer that can be used by file managers to create thumbnails
|
|
|
|
for your video files. The thumbnailer uses ffmpeg o decode frames
|
|
|
|
from the video files, so supported videoformats depend on the
|
|
|
|
configuration flags of ffmpeg.
|
|
|
|
This thumbnailer was designed to be as fast and lightweight as possible.
|
|
|
|
The only dependencies are ffmpeg and libpng.
|
|
|
|
";
|
2022-11-07 14:13:11 +00:00
|
|
|
platforms = platforms.unix;
|
2020-12-26 13:57:43 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-05-04 23:58:33 +00:00
|
|
|
maintainers = [ maintainers.jagajaga ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|