flake.nix: drop aarch64-darwin

Currently qtbase is broken on aarch64-darwin, therefor dropping support, so the check can succeed
This commit is contained in:
Finn Behrens 2022-02-14 15:45:51 +01:00
parent 48c20f5aaa
commit c75ae71190

View File

@ -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 = {