1
0
Fork 0
forked from NotAShelf/rogged

nix: add zig to build inputs

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I87b657bbfa7ca420ba7786f6dcc1acd46a6a6964
This commit is contained in:
raf 2026-04-03 16:37:06 +03:00
commit f637bbf5be
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -4,19 +4,17 @@
raylib, raylib,
gnumake, gnumake,
pkg-config, pkg-config,
zig,
}: }:
mkShell { mkShell {
strictDeps = true; strictDeps = true;
packages = [
clang-tools
gnumake
];
buildInputs = [ buildInputs = [raylib];
raylib
];
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
clang-tools
gnumake
zig
]; ];
} }