mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50:19 +00:00
try to fix macos-13 build
This commit is contained in:
parent
b6068ef9e7
commit
7c17f801eb
1 changed files with 3 additions and 3 deletions
|
@ -76,10 +76,10 @@
|
||||||
x86_64-darwin = {
|
x86_64-darwin = {
|
||||||
rustTarget = "x86_64-apple-darwin";
|
rustTarget = "x86_64-apple-darwin";
|
||||||
mkPackage = { pkgs, ... }: package:
|
mkPackage = { pkgs, ... }: package:
|
||||||
let inherit (pkgs.darwin.apple_sdk.frameworks) AppKit Cocoa;
|
let inherit (pkgs.darwin.apple_sdk.frameworks) AppKit Cocoa Security;
|
||||||
in package // {
|
in package // {
|
||||||
buildInputs = [ Cocoa ];
|
buildInputs = [ AppKit Cocoa Security ];
|
||||||
NIX_LDFLAGS = "-F${AppKit}/Library/Frameworks -framework AppKit";
|
NIX_LDFLAGS = "-F${AppKit}/Library/Frameworks -framework AppKit -F${Security}/Library/Frameworks -framework Security";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue