rustos/shell.nix
2025-03-28 16:07:34 -04:00

8 lines
184 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.qemu
pkgs.rustup
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}