rust-audit-info: init at 0.5.1
This commit is contained in:
parent
80afffaa71
commit
d8f5613009
2 changed files with 21 additions and 0 deletions
20
pkgs/development/tools/rust/rust-audit-info/default.nix
Normal file
20
pkgs/development/tools/rust/rust-audit-info/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -14958,6 +14958,7 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
rust-analyzer = callPackage ../development/tools/rust/rust-analyzer/wrapper.nix { };
|
||||
rust-audit-info = callPackage ../development/tools/rust/rust-audit-info { };
|
||||
rust-bindgen-unwrapped = callPackage ../development/tools/rust/bindgen/unwrapped.nix { };
|
||||
rust-bindgen = callPackage ../development/tools/rust/bindgen { };
|
||||
rust-cbindgen = callPackage ../development/tools/rust/cbindgen {
|
||||
|
|
Loading…
Reference in a new issue