From faaf19b73fc8c31e65904ce25b43d985e11e8701 Mon Sep 17 00:00:00 2001 From: surtur Date: Mon, 20 Jun 2022 15:58:44 +0200 Subject: [PATCH] flake: allow building for {x86_64,aarch64}-darwin --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index c437896..be91eeb 100644 --- a/flake.nix +++ b/flake.nix @@ -30,8 +30,7 @@ version = "v0.0.0"; # System types to support. - # supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; - supportedSystems = ["x86_64-linux" "aarch64-linux"]; + supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"]; # Helper function to generate an attrset '{ x86_64-linux = f "x86_64-linux"; ... }'. forAllSystems = nixpkgs.lib.genAttrs supportedSystems;