c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
20 lines
658 B
Nix
20 lines
658 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rust-audit-info";
|
|
version = "0.5.1";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-oxlbtFDQj6nyBXzNczG6ZhSOHvVQjK1FimWm/pSZHtY=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-Y+5OUfsmUhDP9Fn8s9nso0W25eTFodDIVEVusn6HRmk=";
|
|
|
|
meta = with lib; {
|
|
description = "A command-line tool to extract the dependency trees embedded in binaries by cargo-auditable";
|
|
homepage = "https://github.com/rust-secure-code/cargo-auditable/tree/master/rust-audit-info";
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|