From 00ebbf5bd136319951d3ba8b85d06bda6648180c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Sun, 19 Mar 2023 16:15:42 +1100 Subject: [PATCH] gforth: mark as broken on darwin aarch64 The build fails with: ``` (vars) ./gforthmi gforth.fi --die-on-signal -p ".:~+:." -i kernl64l.fi exboot.fs startup.fs arch/arm64/asm.fs arch/arm64/disasm.fs Segmentation fault: 11. ``` --- pkgs/development/compilers/gforth/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/gforth/default.nix b/pkgs/development/compilers/gforth/default.nix index c84fa5975ab..c5508d2e043 100644 --- a/pkgs/development/compilers/gforth/default.nix +++ b/pkgs/development/compilers/gforth/default.nix @@ -41,6 +41,7 @@ in stdenv.mkDerivation rec { description = "The Forth implementation of the GNU project"; homepage = "https://github.com/forthy42/gforth"; license = lib.licenses.gpl3; + broken = stdenv.isDarwin && stdenv.isAarch64; # segfault when running ./gforthmi platforms = lib.platforms.all; }; }