feat(users/flokli/archeology): add shell

Change-Id: Ic34fefdaac82fd1e23d248f2e5fec282384b8fc0
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9984
Tested-by: BuildkiteCI
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
This commit is contained in:
Florian Klink 2023-11-11 12:12:26 +02:00 committed by flokli
parent 5ae49c5ccf
commit 314d1facd4

View file

@ -9,4 +9,9 @@ depot.nix.readTree.drvTargets {
makeWrapper ${(pkgs.writers.writeRust "parse-bucket-logs-unwrapped" {} ./parse_bucket_logs.rs)} $out/bin/archeology-parse-bucket-logs \
--prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.clickhouse ]}
'';
shell = pkgs.mkShell {
name = "archeology-shell";
packages = with pkgs; [ clickhouse rust-analyzer rustc rustfmt ];
};
}