Skip to content

Commit

Permalink
Fix flake for aarch64-darwin (#117)
Browse files Browse the repository at this point in the history
The flake is broken when running on M1. `pkgs.darwin.apple_sdk.framework` yield an unknown attribute error, the fix was prompted by the error message itself suggesting to changing it to `frameworks`, hence the fix :)
  • Loading branch information
damien-biasotto authored Oct 3, 2022
1 parent 9761eed commit 02feb8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
spago
purescript-language-server
]) ++ (pkgs.lib.optionals (system == "aarch64-darwin")
(with pkgs.darwin.apple_sdk.framework; [
(with pkgs.darwin.apple_sdk.frameworks; [
Cocoa
CoreServices
]));
Expand Down

0 comments on commit 02feb8e

Please sign in to comment.