rogged/nix/shell.nix
NotAShelf f637bbf5be
nix: add zig to build inputs
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I87b657bbfa7ca420ba7786f6dcc1acd46a6a6964
2026-04-05 00:18:36 +03:00

20 lines
214 B
Nix

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