From e9a1ee0bab1ad3d5797ae6bbc947ac535f100073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20B=C3=A4rtschi?= Date: Mon, 24 Feb 2025 11:19:58 +0100 Subject: [PATCH] fix flake.nix on macos --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c184705..e84d45e 100644 --- a/flake.nix +++ b/flake.nix @@ -59,7 +59,7 @@ in { default = pkgs.mkShell { - buildInputs = with pkgs; [ go gopls gotools go-tools qbe fasm ]; + buildInputs = with pkgs; [ go gopls gotools go-tools qbe (if system == "x86_64-linux" then [fasm] else []) ]; }; });