ffmpegthumbnailer: build with jpeg support

This commit is contained in:
Carter Charbonneau 2017-10-07 12:55:00 -06:00
parent b465d9c1ff
commit bd387654f5

View File

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