initial commit

This commit is contained in:
mtgmonkey 2025-03-28 16:07:34 -04:00
commit b4dab5c048
16 changed files with 838 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.qemu
pkgs.rustup
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}