Merge pull request #62273 from matthewbauer/bad-platforms-add

Add treewide bad platforms

Changed files
+4
pkgs
development
libraries
+1
pkgs/development/libraries/enchant/default.nix
···
description = "Generic spell checking library";
homepage = https://abiword.github.io/enchant;
platforms = platforms.unix;
+
badPlatforms = [ "x86_64-darwin" ];
license = licenses.lgpl21;
};
}
+1
pkgs/development/libraries/gmp/4.3.2.nix
···
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
+
badPlatforms = [ "x86_64-darwin" ];
};
};
in self
+1
pkgs/development/libraries/gmp/5.1.x.nix
···
'';
platforms = platforms.all;
+
badPlatforms = [ "x86_64-darwin" ];
maintainers = [ maintainers.peti ];
};
};
+1
pkgs/development/libraries/pth/default.nix
···
homepage = https://www.gnu.org/software/pth;
license = licenses.lgpl21Plus;
platforms = platforms.all;
+
broken = stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isAarch64;
};
}