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

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";
};
};