Files
nixpkgs/pkgs/shells/fish/plugins/github-copilot-cli-fish.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

25 lines
515 B
Nix

{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin rec {
pname = "github-copilot-cli.fish";
version = "0.1.33.1";
src = fetchFromGitHub {
owner = "z11i";
repo = pname;
rev = version;
hash = "sha256-CFXbeO0euC/UtvQV0KCz4WQfdJgsuXKPM6M9oaw7hvg=";
};
meta = {
description = "GitHub Copilot CLI aliases for Fish Shell";
homepage = "https://github.com/z11i/github-copilot-cli.fish";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.malo ];
};
}