2022-11-04T00:24:16 cargo-deny 0.13.1 -> 0.13.4 https://repology.org/metapackage/cargo-deny/versions 2022-11-04T00:24:18 attrpath: cargo-deny 2022-11-04T00:24:19 Checking auto update branch... 2022-11-04T00:24:19 No auto update branch exists 2022-11-04T00:24:19 Old version 0.13.1" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , openssl , zstd , stdenv , curl , Security }: rustPlatform.buildRustPackage rec { pname = "cargo-deny"; version = "0.13.3"; src = fetchFromGitHub { owner = "EmbarkStudios"; repo = pname; rev = version; sha256 = "sha256-INRQy7udhrc21Hy5HQ83LAoc2sjUE5AU5uf7mHJPkpo="; }; # enable pkg-config feature of zstd cargoPatches = [ ./zstd-pkg-config.patch ]; cargoSha256 = "sha256-JRciz40mSAXy3SoXVegudK4ehRjTBvSqrSFRDt7O/uQ="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl zstd ] ++ lib.optionals stdenv.isDarwin [ curl Security ]; buildNoDefaultFeatures = true; # tests require internet access doCheck = false; meta = with lib; { description = "Cargo plugin to generate list of all licenses for a crate"; homepage = "https://github.com/EmbarkStudios/cargo-deny"; changelog = "https://github.com/EmbarkStudios/cargo-deny/blob/${version}/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ figsoda matthiasbeyer jk ]; }; }