nixpkgs/pkgs/shells/fish/plugins/fzf.nix
2024-11-09 10:27:49 +01:00

24 lines
545 B
Nix

{ lib
, buildFishPlugin
, fetchFromGitHub
,
}:
buildFishPlugin rec {
pname = "fzf";
version = "0.16.6-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 ];
};
}