First DBUS server
This commit is contained in:
parent
8ce7c1a8a5
commit
09d58154eb
7 changed files with 419 additions and 6 deletions
11
flake.nix
11
flake.nix
|
@ -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" ]; })
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue