Merge pull request #32678 from dtzWill/feature/pqiv-backends

pqiv: add dependencies needed to enable all backends
This commit is contained in:
Orivej Desh
2017-12-15 16:32:18 +00:00
committed by GitHub

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 .";