wip display

This commit is contained in:
Sebastian Hugentobler 2024-05-20 11:18:17 +02:00
parent 7546d06a4d
commit bdd4c935a3
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
16 changed files with 1317 additions and 4 deletions

View file

@ -69,16 +69,23 @@
system:
let
pkgs = import nixpkgs { inherit system; };
rust = fenix.packages.${system}.stable;
# rust = fenix.packages.${system}.stable;
rust =
with fenix.packages.${system};
fromToolchainFile {
file = ./rust-toolchain.toml;
sha256 = "sha256-iUnN1Tn3SDUo5JvS1QZjjvA2adh7URLeQyXnQHYjCik=";
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [
mosquitto
rust.toolchain
rust
rust-analyzer
sea-orm-cli
probe-rs
];
};
}