First DBUS server

This commit is contained in:
Florian RICHER 2025-04-19 21:51:44 +02:00
parent 8ce7c1a8a5
commit 09d58154eb
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
7 changed files with 419 additions and 6 deletions

View file

@ -17,13 +17,18 @@
pkgs = import nixpkgs {
inherit system overlays;
};
rust = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
rust = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
nativeBuildInputs = with pkgs; [
pkg-config
dbus
];
in
{
devShells = {
default = pkgs.mkShell {
nativeBuildInputs = [
(rust.override { extensions = [ "rust-src" "rust-analyzer" ]; })
nativeBuildInputs = nativeBuildInputs ++ [
(rust.override { extensions = [ "rust-src" "rust-analyzer" ]; })
];
};
};