summaryrefslogtreecommitdiff
path: root/pkgs/shells/fish/plugins/fifc.nix
blob: a3b4ae23068b84f39afc3b0d1ac4157f5aa4910e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  buildFishPlugin,
  fetchFromGitHub,
}:
buildFishPlugin rec {
  pname = "fifc";
  version = "0.1.1";

  src = fetchFromGitHub {
    owner = "gazorby";
    repo = "fifc";
    rev = "v${version}";
    hash = "sha256-p5E4Mx6j8hcM1bDbeftikyhfHxQ+qPDanuM1wNqGm6E=";
  };

  meta = {
    description = "Fzf powers on top of fish completion engine and allows customizable completion rules";
    homepage = "https://github.com/gazorby/fifc";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ hmajid2301 ];
  };
}