feat: make build :o

This commit is contained in:
Kat Inskip 2025-07-24 19:42:45 -07:00
commit 3c055d49e9
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
13 changed files with 521 additions and 0 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{
mkShell,
mgba,
rust-bin
}: mkShell {
packages = [
rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)
];
};