git-machete 3.14.0 -> 3.14.2 https://github.com/virtuslab/git-machete/releases attrpath: git-machete Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/90i2hli2shdp9f6a1ahws3jf2pc2mqrn-packages.json.drv building '/nix/store/90i2hli2shdp9f6a1ahws3jf2pc2mqrn-packages.json.drv'... Going to be running update for following packages: - git-machete-3.14.0 Press Enter key to continue... Running update for: - git-machete-3.14.0: UPDATING ... - git-machete-3.14.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/applications/version-management/git-machete/default.nix b/pkgs/applications/version-management/git-machete/default.nix index 951d241ec65..0fd110dcc3f 100644 --- a/pkgs/applications/version-management/git-machete/default.nix +++ b/pkgs/applications/version-management/git-machete/default.nix @@ -12,13 +12,13 @@ buildPythonApplication rec { pname = "git-machete"; - version = "3.14.0"; + version = "3.14.2"; src = fetchFromGitHub { owner = "virtuslab"; repo = pname; rev = "v${version}"; - hash = "sha256-UgWPm4IxzydO1qqhjbodUIAmqIhTIITYARMvw+F9T7E="; + hash = "sha256-uIVt7pneJq7l/kMSa7VqhcQgXhHCrpBGEqE7QZaDyQQ="; }; nativeBuildInputs = [ installShellFiles ]; No auto update branch exists Old version 3.14.0" not present in master derivation file with contents: { lib , buildPythonApplication , pytest-mock , pytestCheckHook , fetchFromGitHub , installShellFiles , git , nix-update-script , testers , git-machete }: buildPythonApplication rec { pname = "git-machete"; version = "3.14.2"; src = fetchFromGitHub { owner = "virtuslab"; repo = pname; rev = "v${version}"; hash = "sha256-uIVt7pneJq7l/kMSa7VqhcQgXhHCrpBGEqE7QZaDyQQ="; }; nativeBuildInputs = [ installShellFiles ]; checkInputs = [ git pytest-mock pytestCheckHook ]; postInstall = '' installShellCompletion --bash --name git-machete completion/git-machete.completion.bash installShellCompletion --zsh --name _git-machete completion/git-machete.completion.zsh installShellCompletion --fish completion/git-machete.fish ''; postInstallCheck = '' test "$($out/bin/git-machete version)" = "git-machete version ${version}" ''; passthru = { updateScript = nix-update-script { }; }; meta = with lib; { homepage = "https://github.com/VirtusLab/git-machete"; description = "Git repository organizer and rebase/merge workflow automation tool"; changelog = "https://github.com/VirtusLab/git-machete/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ blitz ]; }; }