Skip to content

Commit

Permalink
Fix plugin passing in the Nix package
Browse files Browse the repository at this point in the history
  • Loading branch information
tobim committed Jul 1, 2023
1 parent c122145 commit 77a573d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion nix/tenzir/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@
extraPlugins' = map (x: "extra-plugins/${baseNameOf x}") extraPlugins;
bundledPlugins =
[
"plugins/*"
"plugins/kafka"
"plugins/parquet"
"plugins/pcap"
"plugins/web"
]
++ extraPlugins';
in
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in
pkgs.mkShell ({
name = "tenzir-dev";
hardeningDisable = ["fortify"] ++ lib.optional isStatic "pic";
inputsFrom = [pkgs.tenzir];
inputsFrom = [pkgs.tenzir-de];
nativeBuildInputs =
[pkgs.ccache pkgs.speeve pkgs.clang-tools]
++ pkgs.tenzir-integration-test-deps
Expand Down

0 comments on commit 77a573d

Please sign in to comment.