pqiv: Add dependencies so all backends are available

This commit is contained in:
Will Dietz 2017-12-14 13:43:33 -06:00
parent f4dcb88420
commit e11be36eaf

View File

@ -1,4 +1,6 @@
{ stdenv, fetchFromGitHub, getopt, which, pkgconfig, gtk3 } :
{ stdenv, fetchFromGitHub, getopt, which, pkgconfig, gtk3,
ffmpeg, imagemagick, libarchive, libspectre, libwebp, poppler
}:
stdenv.mkDerivation (rec {
name = "pqiv-${version}";
@ -12,7 +14,10 @@ stdenv.mkDerivation (rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ getopt which gtk3 ];
buildInputs = [
getopt which gtk3
ffmpeg imagemagick libarchive libspectre libwebp poppler
];
prePatch = "patchShebangs .";