depot/third_party/nixpkgs/pkgs/by-name/ru/rust-audit-info/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

29 lines
738 B
Nix

{
lib,
rustPlatform,
fetchCrate,
}:
rustPlatform.buildRustPackage rec {
pname = "rust-audit-info";
version = "0.5.2";
src = fetchCrate {
inherit pname version;
hash = "sha256-g7ElNehBAVSRRlqsxkNm20C0KOMkf310bXNs3EN+/NQ=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-TvbFhFtdQ6fBNjIMgzQDVnK+IZThUJmht7r2zSmcllE=";
meta = with lib; {
description = "Command-line tool to extract the dependency trees embedded in binaries by cargo-auditable";
mainProgram = "rust-audit-info";
homepage = "https://github.com/rust-secure-code/cargo-auditable/tree/master/rust-audit-info";
license = with licenses; [
mit # or
asl20
];
maintainers = with maintainers; [ figsoda ];
};
}