summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/fzf.nix
blob: fa7e33da6a743d918f85d7d88d3eee024c757b87 (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
{ lib
, buildFishPlugin
, fetchFromGitHub
,
}:
buildFishPlugin rec {
  pname = "fzf";
  version = "unstable-2021-05-12";

  src = fetchFromGitHub {
    owner = "jethrokuan";
    repo = pname;
    rev = "479fa67d7439b23095e01b64987ae79a91a4e283";
    sha256 = "sha256-28QW/WTLckR4lEfHv6dSotwkAKpNJFCShxmKFGQQ1Ew=";
  };

  meta = with lib; {
    description = "Ef-fish-ient fish keybindings for fzf";
    homepage = "https://github.com/jethrokuan/fzf";
    license = licenses.mit;
    maintainers = with maintainers; [ Scrumplex ];
  };
}