linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / tea / default.nix
blob06e54559db9a98e1e4844639d0a33417077d81d4
1 { lib, buildGoModule, fetchgit }:
3 buildGoModule rec {
4   pname = "tea";
5   version = "0.7.0";
7   src = fetchgit {
8     url = "https://gitea.com/gitea/tea";
9     rev = "v${version}";
10     sha256 = "sha256-Kq+A6YELfBJ04t7pPnX8Ulh4NSMFn3AHggplLD9J8MY=";
11   };
13   vendorSha256 = null;
15   meta = with lib; {
16     description = "Gitea official CLI client";
17     homepage    = "https://gitea.com/gitea/tea";
18     license     = licenses.mit;
19     maintainers = [ maintainers.j4m3s ];
20   };