2022-12-09T11:11:34 cargo-modules 0.5.14 -> 0.7.0 https://repology.org/metapackage/cargo-modules/versions 2022-12-09T11:11:36 attrpath: cargo-modules 2022-12-09T11:11:37 Checking auto update branch... 2022-12-09T11:11:37 No auto update branch exists 2022-12-09T11:11:37 Old version 0.5.14" not present in master derivation file with contents: { lib, rustPlatform, fetchFromGitHub, stdenv, darwin }: rustPlatform.buildRustPackage rec { pname = "cargo-modules"; version = "0.7.0"; src = fetchFromGitHub { owner = "regexident"; repo = pname; rev = version; sha256 = "sha256-IBvSuyr3ERfPIivw6sEJSRta07Awmwd47cV1iKmvt8A="; }; cargoSha256 = "sha256-zX3lBNQVWBrVQh+02TDUqU7Xmbd7hBOzJxD7cSNTNR0="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreServices ]; meta = with lib; { description = "A cargo plugin for showing a tree-like overview of a crate's modules"; homepage = "https://github.com/regexident/cargo-modules"; changelog = "https://github.com/regexident/cargo-modules/blob/${version}/CHANGELOG.md"; license = with licenses; [ mpl20 ]; maintainers = with maintainers; [ figsoda rvarago ]; }; }