cargo-deny 0.14.12 -> 0.14.15 https://github.com/EmbarkStudios/cargo-deny/releases attrpath: cargo-deny Checking auto update branch... An auto update branch exists with message `cargo-deny: 0.14.12 -> 0.14.14`. New version is 0.14.15. The auto update branch does not match or exceed the new version. Old version 0.14.12" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , zstd , stdenv , darwin }: rustPlatform.buildRustPackage rec { pname = "cargo-deny"; version = "0.14.14"; src = fetchFromGitHub { owner = "EmbarkStudios"; repo = "cargo-deny"; rev = version; hash = "sha256-PCToLbMDElS+YfDmHUGq3hXNA0l02dL2+4dePCHvJ8g="; }; cargoHash = "sha256-XKnuhNNTtdawFXjKn1oNLMRP4IPLaUGWyDOEwiPchhc="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ zstd ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security darwin.apple_sdk.frameworks.SystemConfiguration ]; env = { ZSTD_SYS_USE_PKG_CONFIG = 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 ]; }; }