summary refs log tree commit diff
path: root/pkgs/development/libraries/libantlr3c
diff options
context:
space:
mode:
authorJaakko Luttinen <jaakko.luttinen@iki.fi>2021-03-19 08:01:47 +0200
committerJaakko Luttinen <jaakko.luttinen@iki.fi>2021-03-19 08:04:48 +0200
commita961aa0f4b3c376989e31837d823f634976c598c (patch)
tree14bdee84a09217bcfdaf5d5c046ce8c461cc11de /pkgs/development/libraries/libantlr3c
parent5c1e77bdf92d8fd88a8819832212971be6079c4c (diff)
downloadnixpkgs-a961aa0f4b3c376989e31837d823f634976c598c.tar
nixpkgs-a961aa0f4b3c376989e31837d823f634976c598c.tar.gz
nixpkgs-a961aa0f4b3c376989e31837d823f634976c598c.tar.bz2
nixpkgs-a961aa0f4b3c376989e31837d823f634976c598c.tar.lz
nixpkgs-a961aa0f4b3c376989e31837d823f634976c598c.tar.xz
nixpkgs-a961aa0f4b3c376989e31837d823f634976c598c.tar.zst
nixpkgs-a961aa0f4b3c376989e31837d823f634976c598c.zip
libantlr3c: mark broken on aarch64
The package failed to build with error:

gcc: error: unrecognized command line option '-m64'

See:

https://gist.github.com/r-rmcgibbo/15bf2ca9b297e8357887e146076fff7d

https://gist.github.com/r-rmcgibbo/a362535e4b174d4bfb68112503a49fcd
Diffstat (limited to 'pkgs/development/libraries/libantlr3c')
-rw-r--r--pkgs/development/libraries/libantlr3c/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libantlr3c/default.nix b/pkgs/development/libraries/libantlr3c/default.nix
index d51eac7bdb6..6cbf1d20437 100644
--- a/pkgs/development/libraries/libantlr3c/default.nix
+++ b/pkgs/development/libraries/libantlr3c/default.nix
@@ -15,5 +15,12 @@ stdenv.mkDerivation {
     license = licenses.bsd3;
     platforms = platforms.unix;
     maintainers = with maintainers; [ vbgl ];
+    # The package failed to build with error:
+    #   gcc: error: unrecognized command line option '-m64'
+    #
+    # See:
+    # https://gist.github.com/r-rmcgibbo/15bf2ca9b297e8357887e146076fff7d
+    # https://gist.github.com/r-rmcgibbo/a362535e4b174d4bfb68112503a49fcd
+    broken = stdenv.hostPlatform.isAarch64;
   };
 }