at master 23 lines 556 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin { 7 pname = "aws"; 8 version = "0-unstable-2023-08-03"; 9 10 src = fetchFromGitHub { 11 owner = "oh-my-fish"; 12 repo = "plugin-aws"; 13 rev = "e53a1de3f826916cb83f6ebd34a7356af8f754d1"; 14 hash = "sha256-l17v/aJ4PkjYM8kJDA0zUo87UTsfFqq+Prei/Qq0DRA="; 15 }; 16 17 meta = { 18 description = "Completions and integrations with the AWS CLI"; 19 homepage = "https://github.com/oh-my-fish/plugin-aws"; 20 license = lib.licenses.mit; 21 maintainers = with lib.maintainers; [ theobori ]; 22 }; 23}