summary refs log tree commit diff
path: root/pkgs/development/libraries/ffmpegthumbnailer/default.nix
diff options
context:
space:
mode:
authorCarter Charbonneau <zcarterc@gmail.com>2017-10-07 12:55:00 -0600
committerCarter Charbonneau <zcarterc@gmail.com>2017-10-07 12:56:18 -0600
commitbd387654f572a42bd02642e33e37ac7f0416cdfc (patch)
tree0eecfffdb2ae89a56a83fbb568e3e39da24fedfc /pkgs/development/libraries/ffmpegthumbnailer/default.nix
parentb465d9c1fff4e92d6790e10dafc6a578c44ac98e (diff)
downloadnixpkgs-bd387654f572a42bd02642e33e37ac7f0416cdfc.tar
nixpkgs-bd387654f572a42bd02642e33e37ac7f0416cdfc.tar.gz
nixpkgs-bd387654f572a42bd02642e33e37ac7f0416cdfc.tar.bz2
nixpkgs-bd387654f572a42bd02642e33e37ac7f0416cdfc.tar.lz
nixpkgs-bd387654f572a42bd02642e33e37ac7f0416cdfc.tar.xz
nixpkgs-bd387654f572a42bd02642e33e37ac7f0416cdfc.tar.zst
nixpkgs-bd387654f572a42bd02642e33e37ac7f0416cdfc.zip
ffmpegthumbnailer: build with jpeg support
Diffstat (limited to 'pkgs/development/libraries/ffmpegthumbnailer/default.nix')
-rw-r--r--pkgs/development/libraries/ffmpegthumbnailer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/ffmpegthumbnailer/default.nix b/pkgs/development/libraries/ffmpegthumbnailer/default.nix
index c6167252866..9e76c1e6400 100644
--- a/pkgs/development/libraries/ffmpegthumbnailer/default.nix
+++ b/pkgs/development/libraries/ffmpegthumbnailer/default.nix
@@ -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;