mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
openssl,
|
|
|
|
# darwin
|
|
Security,
|
|
SystemConfiguration,
|
|
|
|
# tests
|
|
firefox-esr-unwrapped,
|
|
firefox-unwrapped,
|
|
thunderbird-unwrapped,
|
|
}:
|
|
|
|
let
|
|
pname = "dump_syms";
|
|
version = "2.3.4";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-6VDuZ5rw2N4z6wOVbaOKO6TNaq8QA5RstsIzmuE3QrI=";
|
|
};
|
|
|
|
cargoHash = "sha256-ndRw5z4CfuX0KNqNgpA4yohG8p/cUR/Op2fIunuO6GM=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
openssl
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isDarwin) [
|
|
Security
|
|
SystemConfiguration
|
|
];
|
|
|
|
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"
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit firefox-esr-unwrapped firefox-unwrapped thunderbird-unwrapped;
|
|
};
|
|
|
|
meta = with lib; {
|
|
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";
|
|
mainProgram = "dump_syms";
|
|
license = licenses.asl20;
|
|
homepage = "https://github.com/mozilla/dump_syms/";
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|