dev: temporarily deprecate darwin builds

This commit is contained in:
NotAShelf 2023-02-28 12:10:55 +03:00
parent 72b0086830
commit 4f161e678b
No known key found for this signature in database
GPG key ID: 5B5C8895F28445F1
2 changed files with 11 additions and 1 deletions

View file

@ -7,7 +7,16 @@
... ...
} @ inputs: } @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} { flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; systems = [
"x86_64-linux"
"aarch64-linux"
/*
FIXME: zig compiler - therefore the maximal version - is broken on darwin
see https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/compilers/zig/0.10.nix#L70
"x86_64-darwin"
"aarch64-darwin"
*/
];
imports = [ imports = [
# add lib to module args # add lib to module args

View file

@ -7,5 +7,6 @@
imports = [ imports = [
./treesitter.nix ./treesitter.nix
./context.nix ./context.nix
./config.nix
]; ];
} }