Skip to content

Commit

Permalink
Use vendored tbox in xmake
Browse files Browse the repository at this point in the history
This allows xmake to build on MacOS
  • Loading branch information
nbdd0121 committed May 20, 2024
1 parent e19adf6 commit 1eb956e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/xmake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{pkgs}:
pkgs.xmake.overrideAttrs (prev: {
# Remove the cjson lua package from the dependancies.
buildInputs = builtins.filter (input: input != pkgs.lua.pkgs.cjson) prev.buildInputs;
buildInputs = builtins.filter (input: !(builtins.elem input [pkgs.lua.pkgs.cjson pkgs.tbox])) prev.buildInputs;
# Reset the configure flags so they don't contain `external=y`.
configureFlags = [];
enableParallelBuilding = true;
Expand Down

0 comments on commit 1eb956e

Please sign in to comment.