mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
27a75df26c
Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
24 lines
541 B
Nix
24 lines
541 B
Nix
{
|
|
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 = with lib; {
|
|
description = "Fzf powers on top of fish completion engine and allows customizable completion rules";
|
|
homepage = "https://github.com/gazorby/fifc";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hmajid2301 ];
|
|
};
|
|
}
|