Commit 906025e4 authored by Malo Bourgon's avatar Malo Bourgon
Browse files

fishPlugins.github-copilot-cli-fish: init at 0.1.33

parent 8670e496
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@ lib.makeScope newScope (self: with self; {

  fzf-fish = callPackage ./fzf-fish.nix { };

  github-copilot-cli-fish = callPackage ./github-copilot-cli-fish.nix { };

  grc = callPackage ./grc.nix { };

  humantime-fish = callPackage ./humantime-fish.nix { };
+20 −0
Original line number Diff line number Diff line
{ lib, buildFishPlugin, fetchFromGitHub }:

buildFishPlugin rec {
  pname = "github-copilot-cli.fish";
  version = "0.1.33";

  src = fetchFromGitHub {
    owner = "z11i";
    repo = pname;
    rev = version;
    hash = "sha256-dhACPlFrw1Z0dW0eA0IMnOelYJc7Fyz2D9u+rL1pyiM=";
  };

  meta = with lib; {
    description = "GitHub Copilot CLI aliases for Fish Shell";
    homepage = "https://github.com/z11i/github-copilot-cli.fish";
    license = licenses.asl20;
    maintainers = [ maintainers.malo ];
  };
}