mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
24 lines
539 B
Nix
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 ];
|
|
};
|
|
}
|