cargo-release 0.24.6 -> 0.24.8 https://repology.org/metapackage/cargo-release/versions attrpath: cargo-release Checking auto update branch... No auto update branch exists Old version 0.24.6" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , openssl , stdenv , curl , darwin , git }: rustPlatform.buildRustPackage rec { pname = "cargo-release"; version = "0.24.8"; src = fetchFromGitHub { owner = "crate-ci"; repo = "cargo-release"; rev = "refs/tags/v${version}"; hash = "sha256-cnewZXIgNUtzJk7GQZKdqUZCbp46xYULZKh0A7/La4k="; }; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { "cargo-test-macro-0.1.0" = "sha256-nlFhe1q0D60dljAi6pFNaz+ssju2Ymtx/PNUl5kJmWo="; }; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ curl darwin.apple_sdk.frameworks.Security ]; nativeCheckInputs = [ git ]; OPENSSL_NO_VENDOR = true; meta = with lib; { description = ''Cargo subcommand "release": everything about releasing a rust crate''; homepage = "https://github.com/crate-ci/cargo-release"; changelog = "https://github.com/crate-ci/cargo-release/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ figsoda gerschtli ]; }; }