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
commit 28f49e86f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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