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

                            
                 
                        
                                                                    

    




                                                                                      
                    
                                                        
                                                          
                                                                                    
                           
                                                                  

    
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "lazygit";
  version = "0.24.2";

  src = fetchFromGitHub {
    owner = "jesseduffield";
    repo = pname;
    rev = "v${version}";
    sha256 = "0hy13l1v2kcsn99dswlq1hl0ly18cal387zhnzjfqv51qng2q5kq";
  };

  vendorSha256 = null;
  subPackages = [ "." ];

  buildFlagsArray = [ "-ldflags=-X main.version=${version} -X main.buildSource=nix" ];

  meta = with lib; {
    description = "Simple terminal UI for git commands";
    homepage = "https://github.com/jesseduffield/lazygit";
    changelog = "https://github.com/jesseduffield/lazygit/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fpletz equirosa Br1ght0ne ];
  };
}