flake: allow building for {x86_64,aarch64}-darwin
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-06-20 15:58:44 +02:00
parent c0d8f8e6e8
commit faaf19b73f
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -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;