diff --git a/pkgs/development/libraries/enchant/default.nix b/pkgs/development/libraries/enchant/default.nix index dc0967ef61e..b7303468cba 100644 --- a/pkgs/development/libraries/enchant/default.nix +++ b/pkgs/development/libraries/enchant/default.nix @@ -17,6 +17,7 @@ stdenv.mkDerivation rec { description = "Generic spell checking library"; homepage = https://abiword.github.io/enchant; platforms = platforms.unix; + badPlatforms = [ "x86_64-darwin" ]; license = licenses.lgpl21; }; } diff --git a/pkgs/development/libraries/gmp/4.3.2.nix b/pkgs/development/libraries/gmp/4.3.2.nix index 939f769b457..a6035a2b7af 100644 --- a/pkgs/development/libraries/gmp/4.3.2.nix +++ b/pkgs/development/libraries/gmp/4.3.2.nix @@ -69,6 +69,7 @@ let self = stdenv.mkDerivation rec { maintainers = [ ]; platforms = stdenv.lib.platforms.all; + badPlatforms = [ "x86_64-darwin" ]; }; }; in self diff --git a/pkgs/development/libraries/gmp/5.1.x.nix b/pkgs/development/libraries/gmp/5.1.x.nix index 00bfb55520d..43b8434b496 100644 --- a/pkgs/development/libraries/gmp/5.1.x.nix +++ b/pkgs/development/libraries/gmp/5.1.x.nix @@ -71,6 +71,7 @@ let self = stdenv.mkDerivation rec { ''; platforms = platforms.all; + badPlatforms = [ "x86_64-darwin" ]; maintainers = [ maintainers.peti ]; }; }; diff --git a/pkgs/development/libraries/pth/default.nix b/pkgs/development/libraries/pth/default.nix index 7a0eba2d67a..c315cb8f72b 100644 --- a/pkgs/development/libraries/pth/default.nix +++ b/pkgs/development/libraries/pth/default.nix @@ -17,5 +17,6 @@ stdenv.mkDerivation rec { homepage = https://www.gnu.org/software/pth; license = licenses.lgpl21Plus; platforms = platforms.all; + broken = stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isAarch64; }; }