summary refs log tree commit diff
path: root/pkgs/development/libraries/poppler
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-09-27 09:59:32 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-09-27 15:08:09 -0500
commit60000c87ae61b8c100963bbf90d5cf3cae1e770c (patch)
tree7533c9f4c71db8c1ee8998a370541994dd234c3a /pkgs/development/libraries/poppler
parente2c25b2f6068c85d259557553de6ba4fbaa045ae (diff)
downloadnixpkgs-60000c87ae61b8c100963bbf90d5cf3cae1e770c.tar
nixpkgs-60000c87ae61b8c100963bbf90d5cf3cae1e770c.tar.gz
nixpkgs-60000c87ae61b8c100963bbf90d5cf3cae1e770c.tar.bz2
nixpkgs-60000c87ae61b8c100963bbf90d5cf3cae1e770c.tar.lz
nixpkgs-60000c87ae61b8c100963bbf90d5cf3cae1e770c.tar.xz
nixpkgs-60000c87ae61b8c100963bbf90d5cf3cae1e770c.tar.zst
nixpkgs-60000c87ae61b8c100963bbf90d5cf3cae1e770c.zip
popplerQt: build with Qt 5.5
Diffstat (limited to 'pkgs/development/libraries/poppler')
-rw-r--r--pkgs/development/libraries/poppler/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix
index 9c22430a711..b15142dc673 100644
--- a/pkgs/development/libraries/poppler/default.nix
+++ b/pkgs/development/libraries/poppler/default.nix
@@ -1,6 +1,6 @@
 { stdenv, lib, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
 , zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
-, minimal ? false, qt4Support ? false, qt4 ? null, qt5Support ? false, qt5 ? null
+, minimal ? false, qt4Support ? false, qt4 ? null, qt5Support ? false, qtbase ? null
 , utils ? false, suffix ? "glib"
 }:
 
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
     [ zlib freetype fontconfig libjpeg lcms curl openjpeg ]
     ++ optional (!minimal) cairo
     ++ optional qt4Support qt4
-    ++ optional qt5Support qt5.base;
+    ++ optional qt5Support qtbase;
 
   nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty;