biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / rust-audit-info / default.nix
blobafd53df7e147c92e5ebdd8c58361a511f1f9d438
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rust-audit-info";
5   version = "0.5.2";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-g7ElNehBAVSRRlqsxkNm20C0KOMkf310bXNs3EN+/NQ=";
10   };
12   cargoSha256 = "sha256-bKrdgz6dyv/PF5JXMq7uvsh7SsK/qEd2W7tm6+YYlxg=";
14   meta = with lib; {
15     description = "A command-line tool to extract the dependency trees embedded in binaries by cargo-auditable";
16     mainProgram = "rust-audit-info";
17     homepage = "https://github.com/rust-secure-code/cargo-auditable/tree/master/rust-audit-info";
18     license = with licenses; [ mit /* or */ asl20 ];
19     maintainers = with maintainers; [ figsoda ];
20   };