about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2017-12-14 13:43:33 -0600
committerWill Dietz <w@wdtz.org>2017-12-14 17:33:51 -0600
commite11be36eaffd616696452813da5d0178cd6ffce5 (patch)
treebbba4764485babd6649c695ea8f550803389df6c /pkgs/applications/graphics
parentf4dcb884209b1dffd88c5a65f8b63049b09f9a7f (diff)
downloadnixlib-e11be36eaffd616696452813da5d0178cd6ffce5.tar
nixlib-e11be36eaffd616696452813da5d0178cd6ffce5.tar.gz
nixlib-e11be36eaffd616696452813da5d0178cd6ffce5.tar.bz2
nixlib-e11be36eaffd616696452813da5d0178cd6ffce5.tar.lz
nixlib-e11be36eaffd616696452813da5d0178cd6ffce5.tar.xz
nixlib-e11be36eaffd616696452813da5d0178cd6ffce5.tar.zst
nixlib-e11be36eaffd616696452813da5d0178cd6ffce5.zip
pqiv: Add dependencies so all backends are available
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/pqiv/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/pqiv/default.nix b/pkgs/applications/graphics/pqiv/default.nix
index 97c9a5370bd2..03d49ad41ca5 100644
--- a/pkgs/applications/graphics/pqiv/default.nix
+++ b/pkgs/applications/graphics/pqiv/default.nix
@@ -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 .";