From e7fcf1aed08a9efc6affd91efa1fb59180ff1fef Mon Sep 17 00:00:00 2001 From: Andrey Tvorozhkov Date: Tue, 1 Oct 2024 20:08:46 +0300 Subject: [PATCH] Fix static LZ4 for macos --- assembly/nix/static-libs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assembly/nix/static-libs.nix b/assembly/nix/static-libs.nix index c7bf936b5..c10984230 100644 --- a/assembly/nix/static-libs.nix +++ b/assembly/nix/static-libs.nix @@ -18,7 +18,7 @@ let configureFlags = (oldAttrs.configureFlags or []) ++ ["--enable-static" "--disable-shared"]; }); - staticLZ4 = lz4.overrideAttrs (oldAttrs: rec { + staticLZ4 = pkgs.lz4.overrideAttrs (oldAttrs: rec { # Disable shared library building and ensure a static build buildInputs = oldAttrs.buildInputs or [];