Skip to content

Commit a6ef370

Browse files
committed
chore(nix): add grpcurl
Used for interacting with Vector API. Likely not needed, but handy if debugging the vector-aggregator tests for new versions.
1 parent 1d3e2fd commit a6ef370

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

shell.nix

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,21 @@ in pkgs.mkShell rec {
2525

2626
# build time dependencies
2727
nativeBuildInputs = pkgs.lib.unique (pkgs.lib.concatMap (crate: crate.nativeBuildInputs) cargoDependencySet ++ (with pkgs; [
28-
beku
29-
docker
30-
gettext # for the proper envsubst
31-
git
32-
jq
33-
kind
34-
kubectl
35-
kubernetes-helm
36-
kuttl
37-
nix # this is implied, but needed in the pure env
38-
# tilt already defined in default.nix
39-
which
40-
yq-go
41-
]));
28+
beku
29+
docker
30+
gettext # for the proper envsubst
31+
git
32+
jq
33+
kind
34+
kubectl
35+
kubernetes-helm
36+
kuttl
37+
nix # this is implied, but needed in the pure env
38+
# tilt already defined in default.nix
39+
which
40+
yq-go
41+
grpcurl # for interacting with the Vector API
42+
]));
4243

4344
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
4445
BINDGEN_EXTRA_CLANG_ARGS = "-I${pkgs.glibc.dev}/include -I${pkgs.clang}/resource-root/include";

0 commit comments

Comments
 (0)