fix flake.nix on macos

This commit is contained in:
Robin Bärtschi 2025-02-24 11:19:58 +01:00
parent 1b2ebd2361
commit e9a1ee0bab

View File

@ -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 []) ];
};
});