blob: f21eb8c2d5f29e3c2d46bb4b4e621658ad5ffd75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin rec {
pname = "forgit";
version = "26.05.0";
src = fetchFromGitHub {
owner = "wfxr";
repo = "forgit";
rev = version;
hash = "sha256-EFbzrVgLfVO+dEEQ1vZUcZkIszZFCktYjQjwkBVrHQI=";
};
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 ];
};
}
|