flac: move CXXFLAGS into env for structuredAttrs (#490782)

This commit is contained in:
Pol Dellaiera
2026-02-16 11:23:33 +00:00
committed by GitHub
+7 -5
View File
@@ -38,11 +38,13 @@ stdenv.mkDerivation (finalAttrs: {
"-DBUILD_SHARED_LIBS=ON"
];
CFLAGS = [
"-O3"
"-funroll-loops"
];
CXXFLAGS = [ "-O3" ];
env = {
CFLAGS = toString [
"-O3"
"-funroll-loops"
];
CXXFLAGS = toString [ "-O3" ];
};
patches = [ ./package.patch ];
doCheck = true;