fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ pkgs, fetchurl, stdenv, ffmpeg, cmake, libpng, pkgconfig
2}:
3
4stdenv.mkDerivation rec {
5 name = "ffmpegthumbnailer-${version}";
6 version = "2.0.10";
7
8 src = fetchurl {
9 url = "https://github.com/dirkvdb/ffmpegthumbnailer/releases/download/${version}/${name}.tar.bz2";
10 sha256 = "0q7ws7ysw2rwr6ja8rhdjcc7x1hrlga7n514wi4lhw1yma32q0m3";
11 };
12
13 buildInputs = [ ffmpeg cmake libpng pkgconfig ];
14
15 meta = with stdenv.lib; {
16 homepage = https://github.com/dirkvdb/ffmpegthumbnailer;
17 description = "A lightweight video thumbnailer";
18 longDescription = "FFmpegthumbnailer is a lightweight video
19 thumbnailer that can be used by file managers to create thumbnails
20 for your video files. The thumbnailer uses ffmpeg o decode frames
21 from the video files, so supported videoformats depend on the
22 configuration flags of ffmpeg.
23 This thumbnailer was designed to be as fast and lightweight as possible.
24 The only dependencies are ffmpeg and libpng.
25 ";
26 platforms = platforms.linux;
27 license = licenses.gpl2;
28 maintainers = [ maintainers.jagajaga ];
29 };
30
31}