ffado: move NIX_LDFLAGS into env for structuredAttrs (#486041)

This commit is contained in:
Wolfgang Walther
2026-02-03 10:22:20 +00:00
committed by GitHub
+3 -1
View File
@@ -110,7 +110,9 @@ stdenv.mkDerivation rec {
argp-standalone
];
NIX_LDFLAGS = lib.optionalString (!stdenv.hostPlatform.isGnu) "-largp";
env = lib.optionalAttrs (!stdenv.hostPlatform.isGnu) {
NIX_LDFLAGS = "-largp";
};
enableParallelBuilding = true;
dontWrapQtApps = true;