Skip to content

Commit

Permalink
add gcloud module
Browse files Browse the repository at this point in the history
Why
===
* We'd like to make it very easy to install Google Cloud tools

What changed
===
* Add module that installs google-cloud-sdk

Test plan
===
* builds fine locally, can run binaries from result
  • Loading branch information
ryantm committed Aug 17, 2023
1 parent 383c4b4 commit e6e4431
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/modules/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ let
(mkModule ./c)
(mkModule ./cpp)
(mkModule ./dart)
(mkModule ./gcloud)
(mkModule ./clojure)
(mkModule ./dotnet)
(mkModule ./haskell)
Expand Down
8 changes: 8 additions & 0 deletions pkgs/modules/gcloud/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
id = "gcloud";
name = "Google Cloud Tools";
packages = [
pkgs.google-cloud-sdk
];
}

0 comments on commit e6e4431

Please sign in to comment.