Unverified Commit d78d760d authored by Artturi's avatar Artturi Committed by GitHub
Browse files

Merge pull request #245300 from amjoseph-nixpkgs/pr/boost/move-mipsN32-to-badPlatforms

parents 54d91c09 4a032b19
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -149,13 +149,11 @@ stdenv.mkDerivation {
    description = "Collection of C++ libraries";
    license = licenses.boost;
    platforms = platforms.unix ++ platforms.windows;
    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;
    badPlatforms = [ lib.systems.inspect.patterns.isMips64n32 ];
    maintainers = with maintainers; [ hjones2199 ];
  };

  passthru = {