rogged/nix/shell.nix
NotAShelf 7af642612b
build: migrate from Make to Zig build system + Just
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I7585121a5ec8e797adc43ba8e30d4ac86a6a6964
2026-04-05 20:29:11 +03:00

23 lines
236 B
Nix

{
mkShell,
clang-tools,
raylib,
pkg-config,
just,
zig,
zig-zlint,
}:
mkShell {
strictDeps = true;
buildInputs = [raylib];
nativeBuildInputs = [
pkg-config
clang-tools
just
zig
zig-zlint
];
}