From 4f161e678bda9548d0d89f3bc1189a1d7e7ba79a Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 28 Feb 2023 12:10:55 +0300 Subject: [PATCH] dev: temporarily deprecate darwin builds --- flake.nix | 11 ++++++++++- modules/treesitter/default.nix | 1 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index aafbfc1..7736d8a 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,16 @@ ... } @ 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 = [ # add lib to module args diff --git a/modules/treesitter/default.nix b/modules/treesitter/default.nix index 5f52900..3b5bf20 100644 --- a/modules/treesitter/default.nix +++ b/modules/treesitter/default.nix @@ -7,5 +7,6 @@ imports = [ ./treesitter.nix ./context.nix + ./config.nix ]; }