mirror of
https://github.com/kittywitch/katgba.git
synced 2025-12-22 00:09:17 -08:00
10 lines
137 B
Nix
10 lines
137 B
Nix
{
|
|
mkShell,
|
|
mgba,
|
|
rust-bin
|
|
}: mkShell {
|
|
packages = [
|
|
rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)
|
|
];
|
|
};
|
|
|