···4848 doCheck = true;
49495050 meta = with lib; {
5151+ # darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin
5252+ broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
5153 description = "Systems language that is both powerful and fun to use";
5254 homepage = "https://myrlang.org/";
5355 license = licenses.mit;
5456 maintainers = with maintainers; [ luc65r ];
5557 platforms = platforms.all;
5656- broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin
5758 };
5859}
+2-1
pkgs/development/compilers/osl/default.nix
···11-{ clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr,
11+{ stdenv, clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr,
22openimageio, llvm, boost165, flex, bison, partio, pugixml,
33util-linux, python3
44}:
···3838 ];
3939 # TODO: How important is partio? CMake doesn't seem to find it
4040 meta = with lib; {
4141+ broken = (stdenv.isLinux && stdenv.isAarch64);
4142 description = "Advanced shading language for production GI renderers";
4243 homepage = "http://opensource.imageworks.com/?p=osl";
4344 maintainers = with maintainers; [ hodapp ];
+2-1
pkgs/development/compilers/yap/default.nix
···2020 NIX_CFLAGS_COMPILE = "-fpermissive -fcommon";
21212222 meta = {
2323+ # the linux 32 bit build fails.
2424+ broken = (stdenv.isLinux && stdenv.isAarch64) || !stdenv.is64bit;
2325 homepage = "http://www.dcc.fc.up.pt/~vsc/Yap/";
2426 description = "A ISO-compatible high-performance Prolog compiler";
2527 license = lib.licenses.artistic2;
26282729 platforms = lib.platforms.linux;
2828- broken = !stdenv.is64bit; # the linux 32 bit build fails.
2930 };
3031}
+1
pkgs/development/interpreters/picoc/default.nix
···3434 '';
35353636 meta = with lib; {
3737+ broken = (stdenv.isLinux && stdenv.isAarch64);
3738 description = "Very small C interpreter for scripting";
3839 longDescription = ''
3940 PicoC is a very small C interpreter for scripting. It was originally
···119119 '';
120120121121 meta = with lib; {
122122+ broken = (stdenv.isLinux && stdenv.isAarch64);
122123 description = "A toolkit for the simulation of the passage of particles through matter";
123124 longDescription = ''
124125 Geant4 is a toolkit for the simulation of the passage of particles through matter.
···233233 requiredSystemFeatures = [ "big-parallel" ];
234234235235 meta = with lib; {
236236+ broken = (stdenv.isLinux && stdenv.isAarch64);
236237 description = "A web engine based on the Chromium web browser";
237238 platforms = platforms.linux;
238239 # This build takes a long time; particularly on slow architectures