summary refs log blame commit diff
path: root/pkgs/tools/misc/tea/default.nix
blob: 5ff739c46ba58f0141612477053866da1b9f06ac (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                       


                   
                    
 



                         
                        
                                                                   










                                                
{ lib, buildGoModule, fetchFromGitea }:

buildGoModule rec {
  pname = "tea";
  version = "0.8.0";

  src = fetchFromGitea {
    domain = "gitea.com";
    owner = "gitea";
    repo = "tea";
    rev = "v${version}";
    sha256 = "sha256-LtLel6JfmYr2Zu7g7oBjAqDcl5y7tJL3XGL7gw+kHxU=";
  };

  vendorSha256 = null;

  meta = with lib; {
    description = "Gitea official CLI client";
    homepage    = "https://gitea.com/gitea/tea";
    license     = licenses.mit;
    maintainers = [ maintainers.j4m3s ];
  };
}