{ lib, buildFishPlugin, fetchFromGitHub, }: buildFishPlugin rec { pname = "forgit"; version = "25.08.0"; src = fetchFromGitHub { owner = "wfxr"; repo = "forgit"; rev = version; hash = "sha256-45NeIRSTNiCqctdwBaS/qOeOI/8f4L+KVI/I6grYm+0="; }; postInstall = '' cp -r bin $out/share/fish/vendor_conf.d/ ''; meta = with lib; { description = "Utility tool powered by fzf for using git interactively"; homepage = "https://github.com/wfxr/forgit"; license = licenses.mit; maintainers = with maintainers; [ happysalada ]; }; }