diff options
Diffstat (limited to 'tvix/castore/default.nix')
-rw-r--r-- | tvix/castore/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tvix/castore/default.nix b/tvix/castore/default.nix index efa4da59c618..edc20ac79d5e 100644 --- a/tvix/castore/default.nix +++ b/tvix/castore/default.nix @@ -4,5 +4,9 @@ depot.tvix.crates.workspaceMembers.tvix-castore.build.override { runTests = true; testPreRun = '' export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt; + export PATH="$PATH:${pkgs.lib.makeBinPath [pkgs.cbtemulator pkgs.google-cloud-bigtable-tool]}" ''; + + # enable some optional features. + features = [ "default" "cloud" ]; } |