git-machete: refactor

This commit is contained in:
Fabian Affolter 2025-08-13 18:36:27 +02:00 committed by GitHub
parent 436da3c2d4
commit 300c2f6d29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,12 +10,12 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "git-machete"; pname = "git-machete";
version = "3.36.4"; version = "3.36.4";
format = "pyproject"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "virtuslab"; owner = "virtuslab";
repo = "git-machete"; repo = "git-machete";
rev = "v${version}"; tag = "v${version}";
hash = "sha256-9xJCwu2TeWsxut6y4VJV6Qou4G81kXcGPHJPrOrsGuc="; hash = "sha256-9xJCwu2TeWsxut6y4VJV6Qou4G81kXcGPHJPrOrsGuc=";
}; };
@ -54,7 +54,7 @@ python3.pkgs.buildPythonApplication rec {
meta = { meta = {
homepage = "https://github.com/VirtusLab/git-machete"; homepage = "https://github.com/VirtusLab/git-machete";
description = "Git repository organizer and rebase/merge workflow automation tool"; 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; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ blitz ]; maintainers = with lib.maintainers; [ blitz ];
mainProgram = "git-machete"; mainProgram = "git-machete";