{ stdenv, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { pname = "lazygit"; version = "0.15.7"; goPackagePath = "github.com/jesseduffield/lazygit"; subPackages = [ "." ]; src = fetchFromGitHub { owner = "jesseduffield"; repo = pname; rev = "v${version}"; sha256 = "18scwla36bjpylha4fwis0aa333r14bavzd7xhx4677xgaz7l73j"; }; 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 ]; }; }