topgrade 10.2.4 -> 10.3.0 https://repology.org/metapackage/topgrade/versions attrpath: topgrade Checking auto update branch... No auto update branch exists Old version 10.2.4" not present in master derivation file with contents: { stdenv , lib , fetchFromGitHub , rustPlatform , AppKit , Cocoa , Foundation , installShellFiles }: rustPlatform.buildRustPackage rec { pname = "topgrade"; version = "10.3.0"; src = fetchFromGitHub { owner = "topgrade-rs"; repo = "topgrade"; rev = "v${version}"; hash = "sha256-BKrErM1d90o+yJ/R0vVgXDBwPgQSP3Qj26x4JmB7SXw="; }; cargoHash = "sha256-jm97lfWHTtd3tE+Yql9CIss78B+bW9nUQAhs5anDb6c="; nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.isDarwin [ AppKit Cocoa Foundation ]; NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [ "-framework" "AppKit" ]; postInstall = '' installShellCompletion --cmd topgrade \ --bash <($out/bin/topgrade --gen-completion bash) \ --fish <($out/bin/topgrade --gen-completion fish) \ --zsh <($out/bin/topgrade --gen-completion zsh) $out/bin/topgrade --gen-manpage > topgrade.8 installManPage topgrade.8 ''; meta = with lib; { description = "Upgrade all the things"; homepage = "https://github.com/topgrade-rs/topgrade"; changelog = "https://github.com/topgrade-rs/topgrade/releases/tag/v${version}"; license = licenses.gpl3Only; maintainers = with maintainers; [ SuperSandro2000 xyenon ]; }; }