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

This commit is contained in:
Malo Bourgon 2023-05-01 10:37:44 -07:00
parent 8670e496ff
commit 906025e445
2 changed files with 22 additions and 0 deletions

View File

@ -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 { };

View File

@ -0,0 +1,20 @@
{ 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 ];
};
}