From 14f6c707f59cae5554e49092360746c0a8fd1c1f Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Mon, 6 Dec 2021 12:46:46 -0800 Subject: [PATCH] flake.nix: Cherry pick supported platforms --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index aea8c74..d18c82d 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,8 @@ }; outputs = { self, nixpkgs, utils, ... }: let - supportedSystems = utils.lib.defaultSystems; + # We aren't testing against Darwin at the moment + supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ]; in utils.lib.eachSystem supportedSystems (system: let pkgs = import nixpkgs { inherit system; }; in rec {