Skip to content

Commit

Permalink
Add apple sdk libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
akash-akya committed Jul 26, 2024
1 parent baf89fb commit f3b101d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
{
devShells = forAllSystems ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
elixir
];
packages = [
pkgs.elixir
] ++ optionals stdenv.isDarwin (with pkgs.darwin.apple_sdk.frameworks; [
CoreFoundation
CoreServices
]);
};
});
};
Expand Down

0 comments on commit f3b101d

Please sign in to comment.