fishPlugin.fifc: init at 0.1.1
Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
This commit is contained in:
parent
acdc68ae37
commit
27a75df26c
2 changed files with 25 additions and 0 deletions
|
@ -19,6 +19,8 @@ lib.makeScope newScope (self: with self; {
|
|||
|
||||
done = callPackage ./done.nix { };
|
||||
|
||||
fifc = callPackage ./fifc.nix { };
|
||||
|
||||
# Fishtape 2.x and 3.x aren't compatible,
|
||||
# but both versions are used in the tests of different other plugins.
|
||||
fishtape = callPackage ./fishtape.nix { };
|
||||
|
|
23
pkgs/shells/fish/plugins/fifc.nix
Normal file
23
pkgs/shells/fish/plugins/fifc.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue