Files
2026-07-01 09:09:47 +00:00

29 lines
579 B
Nix

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