From f637bbf5beb8f7f5cc5f2275819204aaec5baf4a Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 3 Apr 2026 16:37:06 +0300 Subject: [PATCH] nix: add zig to build inputs Signed-off-by: NotAShelf Change-Id: I87b657bbfa7ca420ba7786f6dcc1acd46a6a6964 --- nix/shell.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/nix/shell.nix b/nix/shell.nix index e51be03..23ce860 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -4,19 +4,17 @@ raylib, gnumake, pkg-config, + zig, }: mkShell { strictDeps = true; - packages = [ - clang-tools - gnumake - ]; - buildInputs = [ - raylib - ]; + buildInputs = [raylib]; nativeBuildInputs = [ pkg-config + clang-tools + gnumake + zig ]; }