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
This commit is contained in:
Jaakko Luttinen 2021-03-19 08:01:47 +02:00
parent 5c1e77bdf9
commit a961aa0f4b
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964

View file

@ -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;
};
}