{ stdenv, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { pname = "lazygit"; version = "0.20.3"; goPackagePath = "github.com/jesseduffield/lazygit"; subPackages = [ "." ]; src = fetchFromGitHub { owner = "jesseduffield"; repo = pname; rev = "v${version}"; sha256 = "1p05lfm74g28ci5575vr22q5db50h19fcvc3lzddp0vyiw570isl"; }; meta = with stdenv.lib; { description = "Simple terminal UI for git commands"; homepage = "https://github.com/jesseduffield/lazygit"; license = licenses.mit; maintainers = with maintainers; [ fpletz equirosa filalex77 ]; }; }