From c75ae71190db93a3ebe5357ef2161dc992c63827 Mon Sep 17 00:00:00 2001 From: Finn Behrens Date: Mon, 14 Feb 2022 15:45:51 +0100 Subject: [PATCH] flake.nix: drop aarch64-darwin Currently qtbase is broken on aarch64-darwin, therefor dropping support, so the check can succeed --- flake.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index d809066a..5f95b4e6 100644 --- a/flake.nix +++ b/flake.nix @@ -16,11 +16,19 @@ }; outputs = args@{ self, nixpkgs, flake-utils, libnbtplusplus, quazip, ... }: - { + let + systems = [ + "aarch64-linux" + # "aarch64-darwin" # qtbase is currently broken + "i686-linux" + "x86_64-darwin" + "x86_64-linux" + ]; + in { overlay = final: prev: { inherit (self.packages.${final.system}) polymc; }; - } // flake-utils.lib.eachDefaultSystem (system: + } // flake-utils.lib.eachSystem systems (system: let pkgs = import nixpkgs { inherit system; }; in { packages = {