summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/forgit.nix
blob: 5fc647c73ee3946cf2c796b980b5107c22e71145 (plain) (blame)
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
{ lib, buildFishPlugin, fetchFromGitHub, git, fzf }:

buildFishPlugin rec {
  pname = "forgit";
  version = "unstable-2021-04-09";

  preFixup = ''
    substituteInPlace $out/share/fish/vendor_conf.d/forgit.plugin.fish \
      --replace "fzf " "${fzf}/bin/fzf " \
      --replace "git " "${git}/bin/git "
  '';

  src = fetchFromGitHub {
    owner = "wfxr";
    repo = "forgit";
    rev = "7806fc3ab37ac479c315eb54b164f67ba9ed17ea";
    sha256 = "sha256-a7wjuqXe3+y5zlgSLk5J31WoORbieFimvtr0FQHRY5M=";
  };

  meta = with lib; {
    description = "A utility tool powered by fzf for using git interactively.";
    homepage = "https://github.com/wfxr/forgit";
    license = licenses.mit;
    maintainers = with maintainers; [ happysalada ];
  };
}