567e8dfd8e
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>
25 lines
515 B
Nix
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 ];
|
|
};
|
|
}
|