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

pqiv: add dependencies needed to enable all backends

authored by Orivej Desh and committed by GitHub 28f49e86 63596fae

+7 -2
+7 -2
pkgs/applications/graphics/pqiv/default.nix
··· 1 - { stdenv, fetchFromGitHub, getopt, which, pkgconfig, gtk3 } : 2 3 stdenv.mkDerivation (rec { 4 name = "pqiv-${version}"; ··· 12 }; 13 14 nativeBuildInputs = [ pkgconfig ]; 15 - buildInputs = [ getopt which gtk3 ]; 16 17 prePatch = "patchShebangs ."; 18
··· 1 + { stdenv, fetchFromGitHub, getopt, which, pkgconfig, gtk3, 2 + ffmpeg, imagemagick, libarchive, libspectre, libwebp, poppler 3 + }: 4 5 stdenv.mkDerivation (rec { 6 name = "pqiv-${version}"; ··· 14 }; 15 16 nativeBuildInputs = [ pkgconfig ]; 17 + buildInputs = [ 18 + getopt which gtk3 19 + ffmpeg imagemagick libarchive libspectre libwebp poppler 20 + ]; 21 22 prePatch = "patchShebangs ."; 23