From 40172c0cbfa0d9a29aff93513eba731532d13b4c Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Tue, 23 Jun 2026 23:20:48 -0700 Subject: [PATCH] update linux flake --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index bffe3d2..cd3d706 100644 --- a/flake.nix +++ b/flake.nix @@ -50,7 +50,11 @@ pkgs.cmake pkgs.perl pkgs.protobuf - ]; + ] + # components/build.rs rewrites the dylib soname via patchelf on + # Linux so consumers link without their own build.rs. macOS uses + # install_name_tool, which ships with the toolchain. + ++ pkgs.lib.optionals pkgs.stdenv.isLinux [ pkgs.patchelf ]; buildInputs = [ logosDeliveryLib ]; shellHook = '' export LOGOS_DELIVERY_LIB_DIR="${logosDeliveryLib}/lib"