Jari Vetoniemi

Results 300 comments of Jari Vetoniemi

Hello, the problem is with raylib https://github.com/raysan5/raylib/pull/4123

Might be fixed by upstream https://github.com/raysan5/raylib/pull/4406

Btw you should probably remove the draft marker

Does this work with other compositors as well?

Could be, perhaps related https://github.com/hyprwm/Hyprland/issues/6159

That wasi polyfill looks quite incomplete. You can use it externally anyways by compiling the VFS and calling `sqlite3_vfs_register(sqlite3_demovfs(), 0);` in your app before using zig-sqlite.

It's not tested and might be broken. I'll check later.

Tried to be clever and hit this with: ```nix inputs = let dep = url: { inherit url; inputs.nixpkgs.follows = "nixpkgs"; }; in { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nix-darwin = (dep...

> After some fiddling I've nearly got the build working, I'm getting these errors after about 10 minutes of building (I'll deal with the slowness once it's working 😅) >...

Lmao, the zig's NativePaths.zig strikes again. I recommend building with `stdenvNoCC` or if that's not possible, unset `NIX_CFLAGS_COMPILE`, `NIX_LDFLAGS`, and `NIX_CFLAGS_LINK` env vars for `zig build` so zig doesn't try...