From c5e557a5a8fff729f97aef0435a593d81424e700 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Wed, 17 Dec 2025 09:32:54 +0100 Subject: [PATCH] dump_syms: fix build with structuredAttrs --- pkgs/by-name/du/dump_syms/package.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/du/dump_syms/package.nix b/pkgs/by-name/du/dump_syms/package.nix index 2ef24183e39b..b351c4cf8057 100644 --- a/pkgs/by-name/du/dump_syms/package.nix +++ b/pkgs/by-name/du/dump_syms/package.nix @@ -39,14 +39,16 @@ rustPlatform.buildRustPackage { checkFlags = [ # Disable tests that require network access # ConnectError("dns error", Custom { kind: Uncategorized, error: "failed to lookup address information: Temporary failure in name resolution" })) }', src/windows/pdb.rs:725:56 - "--skip windows::pdb::tests::test_ntdll" - "--skip windows::pdb::tests::test_oleaut32" + "--skip=windows::pdb::tests::test_ntdll" + "--skip=windows::pdb::tests::test_oleaut32" ]; passthru.tests = { inherit firefox-esr-unwrapped firefox-unwrapped thunderbird-unwrapped; }; + __structuredAttrs = true; + meta = { changelog = "https://github.com/mozilla/dump_syms/blob/v${version}/CHANGELOG.md"; description = "Command-line utility for parsing the debugging information the compiler provides in ELF or stand-alone PDB files";