1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

quassel: fix SSL detection with Qt 5.6

This commit is contained in:
Thomas Tuegel 2016-05-11 13:20:57 -05:00
parent 0883048ef4
commit 6521529c23

View file

@ -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]