lol

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

authored by

Artturi and committed by
GitHub
d78d760d 54d91c09

+4 -6
+4 -6
pkgs/development/libraries/boost/generic.nix
··· 149 149 description = "Collection of C++ libraries"; 150 150 license = licenses.boost; 151 151 platforms = platforms.unix ++ platforms.windows; 152 + # boost-context lacks support for the N32 ABI on mips64. The build 153 + # will succeed, but packages depending on boost-context will fail with 154 + # a very cryptic error message. 155 + badPlatforms = [ lib.systems.inspect.patterns.isMips64n32 ]; 152 156 maintainers = with maintainers; [ hjones2199 ]; 153 - 154 - broken = 155 - # boost-context lacks support for the N32 ABI on mips64. The build 156 - # will succeed, but packages depending on boost-context will fail with 157 - # a very cryptic error message. 158 - stdenv.hostPlatform.isMips64n32; 159 157 }; 160 158 161 159 passthru = {