mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
[Backport release-25.05] fishPlugins.aws: init at 0-unstable-2023-08-03 (#441793)
This commit is contained in:
23
pkgs/shells/fish/plugins/aws.nix
Normal file
23
pkgs/shells/fish/plugins/aws.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
lib,
|
||||
buildFishPlugin,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
buildFishPlugin {
|
||||
pname = "aws";
|
||||
version = "0-unstable-2023-08-03";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "oh-my-fish";
|
||||
repo = "plugin-aws";
|
||||
rev = "e53a1de3f826916cb83f6ebd34a7356af8f754d1";
|
||||
hash = "sha256-l17v/aJ4PkjYM8kJDA0zUo87UTsfFqq+Prei/Qq0DRA=";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Completions and integrations with the AWS CLI";
|
||||
homepage = "https://github.com/oh-my-fish/plugin-aws";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ theobori ];
|
||||
};
|
||||
}
|
||||
@@ -12,6 +12,8 @@ lib.makeScope newScope (
|
||||
|
||||
autopair = callPackage ./autopair.nix { };
|
||||
|
||||
aws = callPackage ./aws.nix { };
|
||||
|
||||
bang-bang = callPackage ./bang-bang.nix { };
|
||||
|
||||
bobthefish = callPackage ./bobthefish.nix { };
|
||||
|
||||
Reference in New Issue
Block a user