2022-09-22 12:36:57 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, stdenv, Security }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-vet";
|
2023-03-30 22:05:00 +00:00
|
|
|
version = "0.6.1";
|
2022-09-22 12:36:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mozilla";
|
|
|
|
repo = pname;
|
2023-03-24 00:07:29 +00:00
|
|
|
rev = version;
|
2023-03-30 22:05:00 +00:00
|
|
|
sha256 = "sha256-PAqpVixBdytHvSUu03OyoA1QGBxmmoeV78x6wCiCemQ=";
|
2022-09-22 12:36:57 +00:00
|
|
|
};
|
|
|
|
|
2023-03-30 22:05:00 +00:00
|
|
|
cargoSha256 = "sha256-dsaDpDa/BNqnL3K4a1mg3uEyM094/UO73MzJD9YaAwE=";
|
2022-09-22 12:36:57 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|