Merge pull request #30199 from fread2281/ffmpeg-jpeg

ffmpegthumbnailer: build with jpeg support
This commit is contained in:
Jörg Thalheim 2017-10-08 00:12:03 +01:00 committed by GitHub
commit da55ff260c

View File

@ -1,4 +1,4 @@
{ pkgs, fetchFromGitHub, stdenv, ffmpeg, cmake, libpng, pkgconfig
{ pkgs, fetchFromGitHub, stdenv, ffmpeg, cmake, libpng, pkgconfig, libjpeg
}:
stdenv.mkDerivation rec {
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ ffmpeg libpng ];
buildInputs = [ ffmpeg libpng libjpeg ];
meta = with stdenv.lib; {
homepage = https://github.com/dirkvdb/ffmpegthumbnailer;