Unverified Commit 48bccb78 authored by Stefan Frijters's avatar Stefan Frijters
Browse files

symmetrica: move CFLAGS into env for structuredAttrs

parent 077a408b
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -29,7 +29,10 @@ stdenv.mkDerivation (finalAttrs: {

  # clang warning: passing arguments to '...' without a prototype is deprecated
  # in all versions of C and is not supported in C23.
  CFLAGS = "-std=c99 -Wno-deprecated-non-prototype";
  env.CFLAGS = toString [
    "-std=c99"
    "-Wno-deprecated-non-prototype"
  ];

  enableParallelBuilding = true;