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:
parent
48c20f5aaa
commit
c75ae71190
12
flake.nix
12
flake.nix
@ -16,11 +16,19 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
outputs = args@{ self, nixpkgs, flake-utils, libnbtplusplus, quazip, ... }:
|
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: {
|
overlay = final: prev: {
|
||||||
inherit (self.packages.${final.system}) polymc;
|
inherit (self.packages.${final.system}) polymc;
|
||||||
};
|
};
|
||||||
} // flake-utils.lib.eachDefaultSystem (system:
|
} // flake-utils.lib.eachSystem systems (system:
|
||||||
let pkgs = import nixpkgs { inherit system; };
|
let pkgs = import nixpkgs { inherit system; };
|
||||||
in {
|
in {
|
||||||
packages = {
|
packages = {
|
||||||
|
Loading…
Reference in New Issue
Block a user