about summary refs log tree commit diff
path: root/pkgs/servers/amqp/qpid-cpp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/amqp/qpid-cpp/default.nix')
-rw-r--r--pkgs/servers/amqp/qpid-cpp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/amqp/qpid-cpp/default.nix b/pkgs/servers/amqp/qpid-cpp/default.nix
index bb7f7def077e..02c2e03d90fa 100644
--- a/pkgs/servers/amqp/qpid-cpp/default.nix
+++ b/pkgs/servers/amqp/qpid-cpp/default.nix
@@ -33,7 +33,7 @@ let
       sed -i '/management/d' CMakeLists.txt
     '';
 
-    NIX_CFLAGS_COMPILE = [
+    NIX_CFLAGS_COMPILE = toString ([
       "-Wno-error=deprecated-declarations"
       "-Wno-error=int-in-bool-context"
       "-Wno-error=maybe-uninitialized"
@@ -42,7 +42,7 @@ let
       "-Wno-error=catch-value"
     ] ++ stdenv.lib.optionals stdenv.cc.isGNU [
       "-Wno-error=deprecated-copy"
-    ];
+    ]);
   };
 
   python-frontend = buildPythonPackage {