Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 541 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin rec { 7 pname = "fifc"; 8 version = "0.1.1"; 9 10 src = fetchFromGitHub { 11 owner = "gazorby"; 12 repo = "fifc"; 13 rev = "v${version}"; 14 hash = "sha256-p5E4Mx6j8hcM1bDbeftikyhfHxQ+qPDanuM1wNqGm6E="; 15 }; 16 17 meta = with lib; { 18 description = "Fzf powers on top of fish completion engine and allows customizable completion rules"; 19 homepage = "https://github.com/gazorby/fifc"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ hmajid2301 ]; 22 }; 23}