Add mosquitto to devshell
This commit is contained in:
parent
96d9ca3dc8
commit
b0c1c7d966
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue