2021-07-14 22:03:04 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
2022-10-21 18:38:19 +00:00
|
|
|
, fetchCrate
|
2021-07-14 22:03:04 +00:00
|
|
|
, pkg-config
|
2022-10-21 18:38:19 +00:00
|
|
|
, openssl
|
|
|
|
, stdenv
|
2021-07-14 22:03:04 +00:00
|
|
|
, Security
|
|
|
|
}:
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-audit";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "0.17.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2023-05-24 13:37:59 +00:00
|
|
|
sha256 = "sha256-ICNcBqlkX1k3J5vc/bfoXw/+l2LdHOchv4PfY0G7Y94=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
cargoSha256 = "sha256-ViqaiSLVfDJhMuHjHGi+NVRLPcRhe2a+oKXl4UNM+K8=";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
Security
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-11-02 22:02:43 +00:00
|
|
|
buildFeatures = [ "fix" ];
|
2021-03-20 04:20:00 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
# The tests require network access which is not available in sandboxed Nix builds.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Audit Cargo.lock files for crates with security vulnerabilities";
|
|
|
|
homepage = "https://rustsec.org";
|
2023-03-27 19:17:25 +00:00
|
|
|
changelog = "https://github.com/rustsec/rustsec/blob/cargo-audit/${version}/cargo-audit/CHANGELOG.md";
|
2022-06-16 17:23:12 +00:00
|
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
2022-10-21 18:38:19 +00:00
|
|
|
maintainers = with maintainers; [ basvandijk figsoda jk ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|