replace buildInputs by NIX_LDFLAGS

This commit is contained in:
Clément DOUIN 2024-10-29 19:25:35 +01:00
parent 4d69fd56e2
commit ac3d181628
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72

View file

@ -75,8 +75,8 @@
mkPackage = { pkgs, ... }: package:
let inherit (pkgs.darwin.apple_sdk_11_0.frameworks) Security;
in package // {
buildInputs = [ Security ];
# NIX_LDFLAGS = "-F${Security}/Library/Frameworks -framework Security";
# buildInputs = [ Security ];
NIX_LDFLAGS = "-F${Security}/Library/Frameworks -framework Security";
};
};