Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildFishPlugin, fetchFromGitHub }:
2
3buildFishPlugin rec {
4 pname = "github-copilot-cli.fish";
5 version = "0.1.33";
6
7 src = fetchFromGitHub {
8 owner = "z11i";
9 repo = pname;
10 rev = version;
11 hash = "sha256-dhACPlFrw1Z0dW0eA0IMnOelYJc7Fyz2D9u+rL1pyiM=";
12 };
13
14 meta = with lib; {
15 description = "GitHub Copilot CLI aliases for Fish Shell";
16 homepage = "https://github.com/z11i/github-copilot-cli.fish";
17 license = licenses.asl20;
18 maintainers = [ maintainers.malo ];
19 };
20}