{ description = "A Nix-flake-based Bevy development environment"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; rust-overlay = { url = "github:oxalica/rust-overlay"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, rust-overlay }: let overlays = [ rust-overlay.overlays.default (final: prev: { rustToolchain = let rust = prev.rust-bin; in if builtins.pathExists ./rust-toolchain.toml then rust.fromRustupToolchainFile ./rust-toolchain.toml else if builtins.pathExists ./rust-toolchain then rust.fromRustupToolchainFile ./rust-toolchain else rust.stable.latest.default.override { extensions = [ "rust-src" "rustfmt" ]; }; }) ]; supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { pkgs = import nixpkgs { inherit overlays system; }; }); in { devShells = forEachSupportedSystem ({ pkgs }: { default = pkgs.mkShell rec { packages = with pkgs; [ cargo-deny cargo-edit cargo-watch openssl pkg-config rust-analyzer rustToolchain ]; # bevy buildInputs = with pkgs; [ udev alsa-lib vulkan-loader xorg.libX11 xorg.libXcursor xorg.libXi xorg.libXrandr # To use the x11 feature libxkbcommon wayland # To use the wayland feature ]; LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs; }; }); }; }