Skip to content

Commit

Permalink
cargo-vet: init at 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda committed Sep 21, 2022
1 parent aacd736 commit 0e1b0bd
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/development/tools/rust/cargo-vet/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib, rustPlatform, fetchFromGitHub, stdenv, Security }:

rustPlatform.buildRustPackage rec {
pname = "cargo-vet";
version = "0.3.0";

src = fetchFromGitHub {
owner = "mozilla";
repo = pname;
rev = "0.3";
sha256 = "sha256-m+2Rbaa7wtzdUyl8VzrGsxtZPhQMwlrx6okhc4zZNsI=";
};

cargoSha256 = "sha256-2Ri/CvTZ/RQqxHSgl05kaCbg0ATJapaFEF6y8fWGSwM=";

buildInputs = lib.optional stdenv.isDarwin Security;

# the test_project tests require internet access
checkFlags = [
"--skip=test_project"
];

meta = with lib; {
description = "A tool to help projects ensure that third-party Rust dependencies have been audited by a trusted source";
homepage = "https://mozilla.github.io/cargo-vet";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ figsoda jk ];
};
}
3 changes: 3 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14747,6 +14747,9 @@ with pkgs;
cargo-tauri = callPackage ../development/tools/rust/cargo-tauri { };

cargo-valgrind = callPackage ../development/tools/rust/cargo-valgrind { };
cargo-vet = callPackage ../development/tools/rust/cargo-vet {
inherit (darwin.apple_sdk.frameworks) Security;
};
cargo-wasi = callPackage ../development/tools/rust/cargo-wasi {
inherit (darwin.apple_sdk.frameworks) Security;
};
Expand Down

0 comments on commit 0e1b0bd

Please sign in to comment.