mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 04:12:44 +03:00
ffmpegthumbnailer: build with jpeg support
This commit is contained in:
parent
b465d9c1ff
commit
bd387654f5
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user