nix: enable separateDebugInfo (on non-static linux builds)

the `separateDebugInfo` condition in common-meson.nix was switched;
common-autoconf.nix and components.nix are both conditioned on `!static`
This commit is contained in:
Colin
2025-08-17 21:14:00 +00:00
parent e1e49992a9
commit 2abdb7f7e7
@@ -230,7 +230,7 @@ stdenv.mkDerivation (finalAttrs: {
export MANPATH=$man/share/man:$MANPATH
'';
separateDebugInfo = stdenv.hostPlatform.isLinux && enableStatic;
separateDebugInfo = stdenv.hostPlatform.isLinux && !enableStatic;
passthru = {
inherit aws-sdk-cpp boehmgc;