Merge pull request #201811 from mweinelt/dump_syms-2.1.0

This commit is contained in:
Martin Weinelt
2022-11-19 01:45:37 +01:00
committed by GitHub
+12 -3
View File
@@ -7,11 +7,16 @@
# darwin
, Security
# tests
, firefox-esr-unwrapped
, firefox-unwrapped
, thunderbird-unwrapped
}:
let
pname = "dump_syms";
version = "2.0.0";
version = "2.1.0";
in
rustPlatform.buildRustPackage {
inherit pname version;
@@ -20,10 +25,10 @@ rustPlatform.buildRustPackage {
owner = "mozilla";
repo = pname;
rev = "v${version}";
hash = "sha256-ei/ORKKoh9rQg4xZ5j76qaplw1PyEV7ABkyL7e8WIlQ=";
hash = "sha256-Q4opIGG1kOORECNB6al0oT4tjBe++ND6Eb4E86ED2+o=";
};
cargoSha256 = "sha256-t3AQW0j/L/qIUx6RJKqf+Fv/2BNWkWmTc0PDNFlZeaQ=";
cargoSha256 = "sha256-j3bZaHFJEn/LW032CaRBaLN3Pb5GiQv1MReD0LFI8y8=";
nativeBuildInputs = [
pkg-config
@@ -42,6 +47,10 @@ rustPlatform.buildRustPackage {
"--skip windows::pdb::tests::test_oleaut32"
];
passthru.tests = {
inherit firefox-esr-unwrapped firefox-unwrapped thunderbird-unwrapped;
};
meta = with lib; {
changelog = "https://github.com/mozilla/dump_syms/releases/tag/v${version}";
description = "Command-line utility for parsing the debugging information the compiler provides in ELF or stand-alone PDB files";