nixpkgs/pkgs/shells/fish/plugins/fzf.nix
Sefa Eyeoglu 196e9745e3
fishPlugins.fzf: init at unstable-2021-05-12
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-03-13 16:44:06 +01:00

24 lines
538 B
Nix

{ 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 ];
};
}