Merge pull request #32678 from dtzWill/feature/pqiv-backends
pqiv: add dependencies needed to enable all backends
This commit is contained in:
commit
28f49e86f9
@ -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 .";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user