nfstrace: fix for structured attrs
This commit is contained in:
parent
4a8de55be0
commit
b92fc0fba4
|
@ -22,9 +22,9 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
# To build with GCC 8+ it needs:
|
# To build with GCC 8+ it needs:
|
||||||
CXXFLAGS = [ "-Wno-class-memaccess" "-Wno-ignored-qualifiers" ];
|
CXXFLAGS = "-Wno-class-memaccess -Wno-ignored-qualifiers";
|
||||||
# CMake can't find json_c without:
|
# CMake can't find json_c without:
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${json_c.dev}/include/json-c" ];
|
NIX_CFLAGS_COMPILE = "-I${json_c.dev}/include/json-c";
|
||||||
|
|
||||||
doCheck = false; # requires network access
|
doCheck = false; # requires network access
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue