fix build environment
Some checks are pending
/ build (push) Waiting to run

This commit is contained in:
i do not exist 2026-04-23 02:24:33 +03:00
parent c9b9ff1519
commit b0fb9f013d
4 changed files with 11 additions and 7 deletions

View file

@ -2,8 +2,8 @@
{pkgs?import<nixpkgs>{}}:let
stdenv = pkgs.clang19Stdenv;
name = "tengri";
nativeBuildInputs = [ pkgs.pkg-config pkgs.libclang pkgs.mold ];
buildInputs = [ pkgs.libclang ];
nativeBuildInputs = [ pkgs.pkg-config pkgs.clang pkgs.libclang pkgs.mold ];
buildInputs = [ pkgs.libclang pkgs.jack2 ];
LIBCLANG_PATH = "${pkgs.libclang.lib.outPath}/lib";
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [];
in pkgs.mkShell.override {