This is an automated email from the ASF dual-hosted git repository. msciabarra pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/openwhisk-cli.git
commit 4b848880b8a9517650a4da7830e7127c88e4117a Author: Michele Sciabarra <[email protected]> AuthorDate: Sun Jul 7 12:24:33 2024 +0200 initial commit --- .envrc | 1 + shell.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/.envrc b/.envrc new file mode 100644 index 00000000..1d953f4b --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..34426f6b --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in + +pkgs.mkShellNoCC { + packages = with pkgs; [ + go + ]; +}
