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
pkgs.mkShell {
buildInputs = with pkgs; [
# Dhall (config) stuff
dhall
dhall-lsp-server
# Rust!
(rust-bin.stable.latest.default.override {
extensions = ["rls"];
})
# Build requirements
pkg-config
libusb
openssl
dhall-lsp-server
# Utils
mosquitto # So we can poke mqtt
];
};
formatter = pkgs.alejandra;