summary refs log tree commit diff
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-09-08 01:32:00 +0300
committerGitHub <noreply@github.com>2023-09-08 01:32:00 +0300
commitd78d760daed2edd63f4d2dc3ab9889c98f7c98e7 (patch)
treecdb803d4803b45d5486d95cc9a0104d974c2bd2b /pkgs/development/libraries/boost
parent54d91c09478c3451dd2b11168c434053b3d59ce5 (diff)
parent4a032b19fc663d96e4a2e499cdd720e6bd87012b (diff)
downloadnixpkgs-d78d760daed2edd63f4d2dc3ab9889c98f7c98e7.tar
nixpkgs-d78d760daed2edd63f4d2dc3ab9889c98f7c98e7.tar.gz
nixpkgs-d78d760daed2edd63f4d2dc3ab9889c98f7c98e7.tar.bz2
nixpkgs-d78d760daed2edd63f4d2dc3ab9889c98f7c98e7.tar.lz
nixpkgs-d78d760daed2edd63f4d2dc3ab9889c98f7c98e7.tar.xz
nixpkgs-d78d760daed2edd63f4d2dc3ab9889c98f7c98e7.tar.zst
nixpkgs-d78d760daed2edd63f4d2dc3ab9889c98f7c98e7.zip
Merge pull request #245300 from amjoseph-nixpkgs/pr/boost/move-mipsN32-to-badPlatforms
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/generic.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index 5de26ef5ce2..f3994e4dc14 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -149,13 +149,11 @@ stdenv.mkDerivation {
     description = "Collection of C++ libraries";
     license = licenses.boost;
     platforms = platforms.unix ++ platforms.windows;
+    # boost-context lacks support for the N32 ABI on mips64.  The build
+    # will succeed, but packages depending on boost-context will fail with
+    # a very cryptic error message.
+    badPlatforms = [ lib.systems.inspect.patterns.isMips64n32 ];
     maintainers = with maintainers; [ hjones2199 ];
-
-    broken =
-      # boost-context lacks support for the N32 ABI on mips64.  The build
-      # will succeed, but packages depending on boost-context will fail with
-      # a very cryptic error message.
-      stdenv.hostPlatform.isMips64n32;
   };
 
   passthru = {