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
1 changed files with 1 additions and 1 deletions
|
@ -167,6 +167,6 @@ stdenv.mkDerivation rec {
|
||||||
maintainers = with maintainers; [ cstrahan proglodyte matthewbauer ];
|
maintainers = with maintainers; [ cstrahan proglodyte matthewbauer ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
broken = lib.versionAtLeast stdenv.cc.version "12";
|
broken = stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue