mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
v8_8_x: restrict compiler version check to GCC
Fixes: 519f9b3d29
("v8_8_x: mark broken with GCC 12")
This commit is contained in:
parent
fd58bd4e07
commit
0e2ed40a8b
@ -167,6 +167,6 @@ stdenv.mkDerivation rec {
|
||||
maintainers = with maintainers; [ cstrahan proglodyte matthewbauer ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.bsd3;
|
||||
broken = lib.versionAtLeast stdenv.cc.version "12";
|
||||
broken = stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user