Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
Fix linker error on macos 14.3 with nix build
Merged did:key:z6MkmpBE...CQ6d opened 2 years ago

Using nix build resulted in a linker error

ld: framework not found Security

Following the proposed solution in https://discourse.nixos.org/t/compile-a-rust-binary-on-macos-dbcrossbar/8612 resolves the issue.

1 file changed +1 -0 00102beb 00102beb
modified flake.nix
@@ -76,6 +76,7 @@
          ++ lib.optionals pkgs.stdenv.isDarwin [
            # Additional darwin specific inputs can be set here
            pkgs.libiconv
+
            pkgs.darwin.apple_sdk.frameworks.Security
          ];
      };