nixpkgs/pkgs/tools/package-management/cargo-audit/default.nix

47 lines
965 B
Nix
Raw Normal View History

2021-07-03 22:51:42 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, openssl
, pkg-config
, Security
, libiconv
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-audit";
2021-12-11 14:07:04 +00:00
version = "0.16.0";
src = fetchFromGitHub {
owner = "RustSec";
2021-07-03 22:51:42 +00:00
repo = "rustsec";
rev = "cargo-audit%2Fv${version}";
2021-12-11 14:07:04 +00:00
sha256 = "sha256-6Jb7ViVY4YcnNvGarnHWyBPnpz7xiHQjumOmVaA8rzg=";
};
2021-12-11 14:07:04 +00:00
cargoSha256 = "sha256-31zZMjIFnMIzSmTEACFBE4nSMje9SvE9KzZdoxTg4VM=";
2021-07-03 22:51:42 +00:00
nativeBuildInputs = [
pkg-config
];
2021-07-03 22:51:42 +00:00
buildInputs = [
openssl
libiconv
] ++ lib.optionals stdenv.isDarwin [
Security
];
2021-11-16 00:36:40 +00:00
buildFeatures = [ "fix" ];
# 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";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ basvandijk ];
};
}