lol

git-town: 7.7.0 -> 7.8.0

Plus a patch to fix the build using Go 1.18.

+12 -3
+12 -3
pkgs/tools/misc/git-town/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, installShellFiles, git, testers, git-town, makeWrapper }: 1 + { lib, buildGoModule, fetchFromGitHub, fetchpatch, installShellFiles, git, testers, git-town, makeWrapper }: 2 2 3 3 buildGoModule rec { 4 4 pname = "git-town"; 5 - version = "7.7.0"; 5 + version = "7.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "git-town"; 9 9 repo = "git-town"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-FpBEBx2gb33fGDndvZmvG1A61NoJ4Qy4V3YQSb+Ugsc="; 11 + sha256 = "sha256-g9ooMIMN8DN2FcWYkDC1hICCleQYdHf30PYMCit/NMI="; 12 12 }; 13 + 14 + patches = [ 15 + # Fix "go vet" when building using Go 1.18. 16 + (fetchpatch { 17 + name = "fix-go-vet-in-go-1.18.patch"; 18 + url = "https://github.com/git-town/git-town/commit/23eb0aca7b28c6a0afc21db553aa0e35d35891aa.patch"; 19 + sha256 = "sha256-EyfhKVrQxRJNrYqaZI04dJogaXs1J+bbOIu7p8g2Clc="; 20 + }) 21 + ]; 13 22 14 23 vendorSha256 = null; 15 24