cargo-deny 0.14.7 -> 0.14.10 https://repology.org/project/cargo-deny/versions attrpath: cargo-deny Checking auto update branch... No auto update branch exists Old version 0.14.7" 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.10"; src = fetchFromGitHub { owner = "EmbarkStudios"; repo = "cargo-deny"; rev = version; hash = "sha256-9DqVd0EyfHB32hufz13TXdQZsLaiQWIVgTMQfWT5v1Q="; }; cargoHash = "sha256-KCJ2csFHIWuqHWCWRvTe++vKxHUkzv9tzrtEW6MUj5s="; 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 ]; }; }