From a3173b1f4b2056582324a237b2e1532b46c4d9e9 Mon Sep 17 00:00:00 2001 From: sudoforge Date: Fri, 9 Aug 2024 19:21:03 -0700 Subject: [PATCH] git-bug: change upstream source to git-bug/git-bug git-bug has moved into [the git-bug organization][0]. This change updates the fetchFromGitHub call to fetch directly from git-bug/git-bug instead of relying on what is now a 301 redirection (that lives only at GitHub's discretion). [0]: https://github.com/git-bug/git-bug --- pkgs/applications/version-management/git-bug/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-bug/default.nix b/pkgs/applications/version-management/git-bug/default.nix index 588ef81ced00..ff167f35ad82 100644 --- a/pkgs/applications/version-management/git-bug/default.nix +++ b/pkgs/applications/version-management/git-bug/default.nix @@ -5,7 +5,7 @@ buildGoModule rec { version = "0.8.0"; src = fetchFromGitHub { - owner = "MichaelMure"; + owner = "git-bug"; repo = "git-bug"; rev = "v${version}"; sha256 = "12byf6nsamwz0ssigan1z299s01cyh8bhgj86bibl90agd4zs9n8"; @@ -36,7 +36,7 @@ buildGoModule rec { meta = with lib; { description = "Distributed bug tracker embedded in Git"; - homepage = "https://github.com/MichaelMure/git-bug"; + homepage = "https://github.com/git-bug/git-bug"; license = licenses.gpl3Plus; maintainers = with maintainers; [ royneary DeeUnderscore ]; mainProgram = "git-bug";