tea: 0.8.0 -> 0.9.0

+4 -4
+4 -4
pkgs/tools/misc/tea/default.nix
··· 2 3 buildGoModule rec { 4 pname = "tea"; 5 - version = "0.8.0"; 6 7 src = fetchFromGitea { 8 domain = "gitea.com"; 9 owner = "gitea"; 10 repo = "tea"; 11 rev = "v${version}"; 12 - sha256 = "sha256-LtLel6JfmYr2Zu7g7oBjAqDcl5y7tJL3XGL7gw+kHxU="; 13 }; 14 15 - vendorSha256 = null; 16 17 meta = with lib; { 18 description = "Gitea official CLI client"; 19 homepage = "https://gitea.com/gitea/tea"; 20 license = licenses.mit; 21 - maintainers = [ maintainers.j4m3s ]; 22 }; 23 }
··· 2 3 buildGoModule rec { 4 pname = "tea"; 5 + version = "0.9.0"; 6 7 src = fetchFromGitea { 8 domain = "gitea.com"; 9 owner = "gitea"; 10 repo = "tea"; 11 rev = "v${version}"; 12 + sha256 = "sha256-Bvee8m/BXvPtaaD8xjVg9qzorO0ln6xHP1upPgWoD+A="; 13 }; 14 15 + vendorSha256 = "sha256-nb0lQEAaIYlGpodFQLhMk/24DmTgg5K3zQ4s/XY+Z1w="; 16 17 meta = with lib; { 18 description = "Gitea official CLI client"; 19 homepage = "https://gitea.com/gitea/tea"; 20 license = licenses.mit; 21 + maintainers = with maintainers; [ j4m3s techknowlogick ]; 22 }; 23 }