Skip to content

Commit

Permalink
flake: add "x86_64-darwin" to the list of supported systems
Browse files Browse the repository at this point in the history
  • Loading branch information
foolnotion committed Jun 1, 2024
1 parent 80ce063 commit cbeb68e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

outputs = inputs@{ self, flake-parts, nixpkgs, foolnotion, pratt-parser, vdt, vstat, lbfgs }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-darwin" ];
systems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];

perSystem = { pkgs, system, ... }:
let
Expand Down
1 change: 1 addition & 0 deletions operon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ stdenv.mkDerivation rec {

cmakePreset = {
"x86_64-linux" = "build-linux";
"x86_64-darwin" = "build-linux";
"aarch64-darwin" = "build-osx";
}."${system}";

Expand Down

0 comments on commit cbeb68e

Please sign in to comment.