summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/quassel
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-05-11 13:20:57 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-05-11 13:20:57 -0500
commit6521529c23fe979cc29867a25ede3a355e5b410c (patch)
treed3cd05b0c024688e3f27e0b2bcbf0eb3bcfa8725 /pkgs/applications/networking/irc/quassel
parent0883048ef4be625331ad0bb0629dc8863e7106a1 (diff)
downloadnixpkgs-6521529c23fe979cc29867a25ede3a355e5b410c.tar
nixpkgs-6521529c23fe979cc29867a25ede3a355e5b410c.tar.gz
nixpkgs-6521529c23fe979cc29867a25ede3a355e5b410c.tar.bz2
nixpkgs-6521529c23fe979cc29867a25ede3a355e5b410c.tar.lz
nixpkgs-6521529c23fe979cc29867a25ede3a355e5b410c.tar.xz
nixpkgs-6521529c23fe979cc29867a25ede3a355e5b410c.tar.zst
nixpkgs-6521529c23fe979cc29867a25ede3a355e5b410c.zip
quassel: fix SSL detection with Qt 5.6
Diffstat (limited to 'pkgs/applications/networking/irc/quassel')
-rw-r--r--pkgs/applications/networking/irc/quassel/qt-5.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/networking/irc/quassel/qt-5.nix b/pkgs/applications/networking/irc/quassel/qt-5.nix
index 4ef1a9c4582..d631f4aa214 100644
--- a/pkgs/applications/networking/irc/quassel/qt-5.nix
+++ b/pkgs/applications/networking/irc/quassel/qt-5.nix
@@ -41,6 +41,9 @@ in with stdenv; mkDerivation rec {
 
   enableParallelBuilding = true;
 
+  # Prevent ``undefined reference to `qt_version_tag''' in SSL check
+  NIX_CFLAGS_COMPILE = [ "-DQT_NO_VERSION_TAGGING=1" ];
+
   buildInputs =
        [ cmake makeWrapper qtbase ]
     ++ lib.optionals buildCore [qtscript qca-qt5]