Add mosquitto to devshell

This commit is contained in:
Sam W 2022-07-11 13:39:48 +01:00
parent 96d9ca3dc8
commit b0c1c7d966
1 changed files with 6 additions and 1 deletions

View File

@ -32,14 +32,19 @@
in in
pkgs.mkShell { pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
# Dhall (config) stuff
dhall dhall
dhall-lsp-server
# Rust!
(rust-bin.stable.latest.default.override { (rust-bin.stable.latest.default.override {
extensions = ["rls"]; extensions = ["rls"];
}) })
# Build requirements
pkg-config pkg-config
libusb libusb
openssl openssl
dhall-lsp-server # Utils
mosquitto # So we can poke mqtt
]; ];
}; };
formatter = pkgs.alejandra; formatter = pkgs.alejandra;