aaf53614b3
Rather than picking up from clickhouse-specific config files, this gets it to pick up from the ambient environment, which is closer to (but not the same as) the AWS default credentials chain. Change-Id: I9c498c231974ed345c3e3d354ec230052b4d0ff2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10006 Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz>
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ depot, pkgs, ... }:
|
|
|
|
let
|
|
clickhouseConfigAWS = builtins.toFile "clickhouse-local.xml" ''
|
|
<clickhouse>
|
|
<s3>
|
|
<use_environment_credentials>true</use_environment_credentials>
|
|
</s3>
|
|
</clickhouse>
|
|
'';
|
|
# clickhouse has a very odd AWS config concept.
|
|
# Configure it to be a bit more sane.
|
|
clickhoseLocalFixedAWS = pkgs.runCommand "clickhouse-local-fixed"
|
|
{
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
} ''
|
|
mkdir -p $out/bin
|
|
makeWrapper ${pkgs.clickhouse}/bin/clickhouse-local $out/bin/clickhouse-local \
|
|
--append-flags "-C ${clickhouseConfigAWS}"
|
|
'';
|
|
in
|
|
|
|
depot.nix.readTree.drvTargets {
|
|
inherit clickhoseLocalFixedAWS;
|
|
parse-bucket-logs = pkgs.runCommand "archeology-parse-bucket-logs"
|
|
{
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
} ''
|
|
mkdir -p $out/bin
|
|
makeWrapper ${(pkgs.writers.writeRust "parse-bucket-logs-unwrapped" {} ./parse_bucket_logs.rs)} $out/bin/archeology-parse-bucket-logs \
|
|
--prefix PATH : ${pkgs.lib.makeBinPath [ clickhoseLocalFixedAWS ]}
|
|
'';
|
|
|
|
shell = pkgs.mkShell {
|
|
name = "archeology-shell";
|
|
packages = with pkgs; [ clickhouse rust-analyzer rustc rustfmt ];
|
|
};
|
|
}
|