cargo-audit: 0.17.0 -> 0.17.2, add figsoda as a maintainer

This commit is contained in:
figsoda 2022-10-06 19:14:46 -04:00
parent 5d533d4aaf
commit 5bf2ad9e92

View File

@ -1,25 +1,22 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, openssl
, fetchCrate
, pkg-config
, openssl
, stdenv
, Security
, libiconv
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-audit";
version = "0.17.0";
version = "0.17.2";
src = fetchFromGitHub {
owner = "RustSec";
repo = "rustsec";
rev = "cargo-audit%2Fv${version}";
sha256 = "sha256-x91x5XjIRXLhs96r06ITbpHCkHoaCaMXH+VCp6f57Gg=";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-fSdh8yCV+2AdAtF4eO2z8+uxOAf2N0IxqIFLw4B8dKE=";
};
cargoSha256 = "sha256-/CzRkdo4kfvRwOZsfyu0zL3UnjEKCBj7wj40jlydSDI=";
cargoSha256 = "sha256-YCEQaUcTmZ9zTdGcDQkaVI0Dc8oIBvt840s3x9PUlrg=";
nativeBuildInputs = [
pkg-config
@ -27,12 +24,11 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
openssl
libiconv
] ++ lib.optionals stdenv.isDarwin [
Security
];
buildFeatures = [ "fix" ];
buildFeatures = [ "binary-scanning" "fix" ];
# The tests require network access which is not available in sandboxed Nix builds.
doCheck = false;
@ -40,7 +36,8 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "Audit Cargo.lock files for crates with security vulnerabilities";
homepage = "https://rustsec.org";
changelog = "https://github.com/rustsec/rustsec/blob/cargo-audit/v${version}/cargo-audit/CHANGELOG.md";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ basvandijk jk ];
maintainers = with maintainers; [ basvandijk figsoda jk ];
};
}