From 1e7d27058d1423ba4bfe300cf599f514766923cd Mon Sep 17 00:00:00 2001 From: Nicolas Duteil Date: Mon, 29 Jan 2024 12:34:45 +0100 Subject: [PATCH] fix: fix flake to support new version --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index e5f7f9f..64bd14c 100644 --- a/flake.nix +++ b/flake.nix @@ -19,6 +19,7 @@ (self: super: { quickjs = super.quickjs.overrideAttrs (old: { # LTO support must be disabled on macos + makeFlags = [ "PREFIX=${placeholder "out"}" ]; buildFlags = if (system == "aarch64-darwin" || system == "x86_64-darwin") then [ "CONFIG_LTO=" ] else (old.buildFlags or [ ]); installCheckPhase = ""; src = ./.;