Files
nixpkgs/pkgs/shells/fish/plugins/fifc.nix
2026-07-23 23:30:00 +00:00

24 lines
539 B
Nix

{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin rec {
pname = "fifc";
version = "0.3.4";
src = fetchFromGitHub {
owner = "gazorby";
repo = "fifc";
rev = "v${version}";
hash = "sha256-huBcOdjiRztGyqcMX4vnrr8lLjtWBcCYvBLXr1JNNQs=";
};
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 ];
};
}