- Download and extract the engine binary from codebuff.com releases - Use patchelf to set correct glibc interpreter path - Create wrapper launcher that copies patched binary to user config - Pre-fetch all npm dependencies (no network needed in sandbox) - Set dontStrip/dontPatchelf to prevent fixupPhase corruption
2 lines
79 B
Nix
2 lines
79 B
Nix
{ pkgs, ... }: pkgs.callPackage ./package.nix { glibc = pkgs.stdenv.cc.libc; }
|