We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e64786e commit 5346510Copy full SHA for 5346510
packaging/components.nix
@@ -155,11 +155,13 @@ let
155
];
156
};
157
158
- mesonBuildLayer = finalAttrs: prevAttrs: {
+ mesonBuildLayer = finalAttrs: prevAttrs: rec {
159
nativeBuildInputs = prevAttrs.nativeBuildInputs or [ ] ++ [
160
pkg-config
161
162
separateDebugInfo = !stdenv.hostPlatform.isStatic;
163
+ # SEE: https://github.com/NixOS/nixpkgs/blob/25.11/pkgs/stdenv/generic/make-derivation.nix#L401-L404
164
+ __structuredAttrs = separateDebugInfo;
165
hardeningDisable = lib.optional stdenv.hostPlatform.isStatic "pie";
166
167
0 commit comments