forked from mirrors/nixpkgs
fishPlugins.github-copilot-cli-fish: init at 0.1.33
This commit is contained in:
parent
8670e496ff
commit
906025e445
|
@ -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
pkgs/shells/fish/plugins/github-copilot-cli-fish.nix
Normal file
20
pkgs/shells/fish/plugins/github-copilot-cli-fish.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue