aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/science/robotics/qgroundcontrol
diff options
context:
space:
mode:
authorJosef Kemetmüller <josef.kemetmueller@gmail.com>2020-01-05 23:41:37 +0100
committerAlyssa Ross <hi@alyssa.is>2020-03-14 03:18:39 +0000
commit3a8d05747b6d7a8036e1aafe9310a6321f3de78f (patch)
tree7c19a0a40a546f77e827ecc998938d40b3050539 /pkgs/applications/science/robotics/qgroundcontrol
parent8b07500163819bcad8bedc37af52e700bf835405 (diff)
qgroundcontrol: Fix build
This silences some warnings to not run into "Log limit exceeded" on hydra.
Diffstat (limited to 'pkgs/applications/science/robotics/qgroundcontrol')
-rw-r--r--pkgs/applications/science/robotics/qgroundcontrol/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
index cbf7f4db8c41..c17ffb001182 100644
--- a/pkgs/applications/science/robotics/qgroundcontrol/default.nix
+++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
@@ -27,6 +27,8 @@ mkDerivation rec {
cd build
'';
+ NIX_CFLAGS_COMPILE = [ "-Wno-address-of-packed-member" ]; # Don't litter logs with these warnings
+
qmakeFlags = [
# Default install tries to copy Qt files into package
"CONFIG+=QGC_DISABLE_BUILD_SETUP"