From 0e4422b0c8681d68ceb328012a79919b9e4374dd Mon Sep 17 00:00:00 2001 From: Syed Daanish Date: Tue, 8 Sep 2026 19:10:52 +0100 Subject: [PATCH] Fix issue with mruby linking. --- flake.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 325e892..d0a953e 100644 --- a/flake.nix +++ b/flake.nix @@ -70,9 +70,8 @@ buildPhase = '' make \ - MRBC=${mruby}/bin/mrbc \ - MRUBY_CFLAGS=-I${mruby}/include \ - MRUBY_LIBS=-L${mruby}/lib -lmruby + MRUBY_CFLAGS="-I${mruby}/include" \ + MRUBY_LIBS="-L${mruby}/lib -lmruby" ''; installPhase = '' @@ -110,7 +109,6 @@ export CC="ccache $CC" export CXX="ccache $CXX" - export MRBC=${mruby}/bin/mrbc export MRUBY_CFLAGS=-I${mruby}/include export MRUBY_LIBS="-L${mruby}/lib -lmruby" export PATH="$PWD/result/bin:$PATH"