about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-03-11 09:10:10 -0600
committerThomas Tuegel <ttuegel@gmail.com>2016-03-11 09:10:10 -0600
commit9e5b2d5e3d517ec915ff2472f95967e504f392b7 (patch)
treea80191010a8427ada5c889a2f633dc9e442cae67 /pkgs/development
parentcd5e923f550950fa85ec409cc992460032ddd684 (diff)
downloadnixlib-9e5b2d5e3d517ec915ff2472f95967e504f392b7.tar
nixlib-9e5b2d5e3d517ec915ff2472f95967e504f392b7.tar.gz
nixlib-9e5b2d5e3d517ec915ff2472f95967e504f392b7.tar.bz2
nixlib-9e5b2d5e3d517ec915ff2472f95967e504f392b7.tar.lz
nixlib-9e5b2d5e3d517ec915ff2472f95967e504f392b7.tar.xz
nixlib-9e5b2d5e3d517ec915ff2472f95967e504f392b7.tar.zst
nixlib-9e5b2d5e3d517ec915ff2472f95967e504f392b7.zip
qt48: fix evaluation error on Darwin
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/qt-4.x/4.8/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix
index 07a7993a67fe..788fb8741402 100644
--- a/pkgs/development/libraries/qt-4.x/4.8/default.nix
+++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
       ./libressl.patch
       (substituteAll {
         src = ./dlopen-absolute-paths.diff;
-        cups = cups.out;
+        cups = if cups != null then cups.out else null;
         icu = icu.out;
         libXfixes = libXfixes.out;
         glibc = stdenv.cc.libc.out;