2023-09-21 21:32:44 +02:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
depot.tvix.crates.workspaceMembers.tvix-castore.build.override {
|
|
|
|
runTests = true;
|
2024-03-03 16:46:20 +01:00
|
|
|
testPreRun = ''
|
|
|
|
export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt;
|
2024-03-19 11:12:03 +01:00
|
|
|
export PATH="$PATH:${pkgs.lib.makeBinPath [pkgs.cbtemulator pkgs.google-cloud-bigtable-tool]}"
|
2024-03-03 16:46:20 +01:00
|
|
|
'';
|
2024-03-19 11:12:03 +01:00
|
|
|
|
|
|
|
# enable some optional features.
|
|
|
|
features = [ "default" "cloud" ];
|
2023-09-21 21:32:44 +02:00
|
|
|
}
|