ucommon: move CXXFLAGS into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-15 19:56:55 +01:00
parent 45ec9aaeff
commit 9e4fa4d3f9
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ pkg-config ];
# use C++14 Standard until error handling code gets updated upstream
CXXFLAGS = [ "-std=c++14" ];
env.CXXFLAGS = toString [ "-std=c++14" ];
# disable flaky networking test
postPatch = ''