From 8769f43aa44d972b31f8f0e805262ff385d10e04 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Apr 2015 13:27:04 +0200 Subject: [PATCH] qt-5.4: Fix reference to MySQL library. The MySQL library has been split up from the main client/server binaries in 53f1d8147db9af0aaac12deff28544f61dc05c64. Signed-off-by: aszlig --- pkgs/development/libraries/qt-5/5.4/qtbase.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase.nix b/pkgs/development/libraries/qt-5/5.4/qtbase.nix index 45de927bc8d..bc342f605bc 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtbase.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtbase.nix @@ -148,7 +148,7 @@ stdenv.mkDerivation { # doesn't remain a runtime-dep if not used ++ optionals mesaSupported [ mesa mesa_glu ] ++ optional (cups != null) cups - ++ optional (mysql != null) mysql + ++ optional (mysql != null) mysql.lib ++ optional (postgresql != null) postgresql; buildInputs = [ gdb bison flex gperf ruby ];