ffado: move NIX_LDFLAGS into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-01 22:25:10 +01:00
parent 4ade926ec9
commit 6d230915ff
+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;