qpid-cpp: fix eval

This commit is contained in:
Jan Tojnar 2019-12-31 02:59:40 +01:00
parent 9a8441c170
commit c5406e30b0
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -33,7 +33,7 @@ let
sed -i '/management/d' CMakeLists.txt
'';
NIX_CFLAGS_COMPILE = toString [
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 {