{ stdenv, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "lazygit"; version = "0.23.6"; src = fetchFromGitHub { owner = "jesseduffield"; repo = pname; rev = "v${version}"; sha256 = "0afs3h8npbzmcrzm6kzfdva5id3zyifhhsh7zgyrxkmw60qhl498"; }; vendorSha256 = null; subPackages = [ "." ]; buildFlagsArray = [ "-ldflags=-X main.version=${version} -X main.buildSource=nix" ]; 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 ]; }; }