From 5bf2ad9e92b9be122a964c972aef5a363b8d1e10 Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 6 Oct 2022 19:14:46 -0400 Subject: [PATCH] cargo-audit: 0.17.0 -> 0.17.2, add figsoda as a maintainer --- .../tools/rust/cargo-audit/default.nix | 25 ++++++++----------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-audit/default.nix b/pkgs/development/tools/rust/cargo-audit/default.nix index 982a000caa74..9489797ac176 100644 --- a/pkgs/development/tools/rust/cargo-audit/default.nix +++ b/pkgs/development/tools/rust/cargo-audit/default.nix @@ -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 ]; }; }