diff --git a/pkgs/by-name/gi/git-machete/package.nix b/pkgs/by-name/gi/git-machete/package.nix index 39ebcc178cc3..6d254d10c57a 100644 --- a/pkgs/by-name/gi/git-machete/package.nix +++ b/pkgs/by-name/gi/git-machete/package.nix @@ -10,12 +10,12 @@ python3.pkgs.buildPythonApplication rec { pname = "git-machete"; version = "3.36.4"; - format = "pyproject"; + pyproject = true; src = fetchFromGitHub { owner = "virtuslab"; repo = "git-machete"; - rev = "v${version}"; + tag = "v${version}"; hash = "sha256-9xJCwu2TeWsxut6y4VJV6Qou4G81kXcGPHJPrOrsGuc="; }; @@ -54,7 +54,7 @@ python3.pkgs.buildPythonApplication rec { meta = { 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}"; + changelog = "https://github.com/VirtusLab/git-machete/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ blitz ]; mainProgram = "git-machete";