Merge pull request #290190 from cafkafk/fix-cargo-audit

cargo-audit: 0.18.3 -> 0.19.0

authored by

Sarah Brofeldt and committed by
GitHub
591f9cbe 4d5d18e7

+8 -6
+7 -5
pkgs/development/tools/rust/cargo-audit/default.nix
··· 2 2 , rustPlatform 3 3 , fetchCrate 4 4 , pkg-config 5 - , libgit2_1_5 5 + , libgit2 6 6 , openssl 7 7 , zlib 8 8 , stdenv 9 9 , Security 10 + , SystemConfiguration 10 11 }: 11 12 12 13 rustPlatform.buildRustPackage rec { 13 14 pname = "cargo-audit"; 14 - version = "0.18.3"; 15 + version = "0.19.0"; 15 16 16 17 src = fetchCrate { 17 18 inherit pname version; 18 - hash = "sha256-8KLH6aPZhHtxC4hbMaebv1JiVkZH8p5QqnUXkJrmr4w="; 19 + hash = "sha256-NPRtSoITOS9i/v9hgdULVSmLaFbXZZeoO4SdqqANDxk="; 19 20 }; 20 21 21 - cargoHash = "sha256-8MOZvhREm4ch2flstx7J25j8mvwV3uGez5f1xkZ+S7I="; 22 + cargoHash = "sha256-cQ2ZEZJ7PgNUxzZXR9Of1R5v2wu1b3xOlENu1DZU/rQ="; 22 23 23 24 nativeBuildInputs = [ 24 25 pkg-config 25 26 ]; 26 27 27 28 buildInputs = [ 28 - libgit2_1_5 29 + libgit2 29 30 openssl 30 31 zlib 31 32 ] ++ lib.optionals stdenv.isDarwin [ 32 33 Security 34 + SystemConfiguration 33 35 ]; 34 36 35 37 buildFeatures = [ "fix" ];
+1 -1
pkgs/top-level/all-packages.nix
··· 16875 16875 cargo-all-features = callPackage ../development/tools/rust/cargo-all-features { }; 16876 16876 cargo-apk = callPackage ../development/tools/rust/cargo-apk { }; 16877 16877 cargo-audit = callPackage ../development/tools/rust/cargo-audit { 16878 - inherit (darwin.apple_sdk.frameworks) Security; 16878 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 16879 16879 }; 16880 16880 cargo-benchcmp = callPackage ../development/tools/rust/cargo-benchcmp { }; 16881 16881 cargo-binstall = callPackage ../development/tools/rust/cargo-binstall { };