From 2abdb7f7e701d2f182db1eff80e2fa9942f237e8 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 14 Aug 2025 09:03:02 +0000 Subject: [PATCH] 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` --- pkgs/tools/package-management/nix/common-meson.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/package-management/nix/common-meson.nix b/pkgs/tools/package-management/nix/common-meson.nix index f41f9e986a29..1c67379a8a59 100644 --- a/pkgs/tools/package-management/nix/common-meson.nix +++ b/pkgs/tools/package-management/nix/common-meson.nix @@ -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;