cctag: fix failing tests with gcc13

Since GCC13 the package does not build correctly, causing the tests to
fail. This was not the case with GCC12. Instead of building it with an
older version of GCC, we can build and test it successfully with
Clang.
This commit is contained in:
Jonas Meurer 2024-05-14 10:52:59 +02:00
parent 430b6438b6
commit f11d0b0601
No known key found for this signature in database
GPG Key ID: 7D00DC06D0B220A0

View File

@ -20321,6 +20321,7 @@ with pkgs;
ccrtp = callPackage ../development/libraries/ccrtp { };
cctag = callPackage ../development/libraries/cctag {
stdenv = clangStdenv;
tbb = tbb_2021_11;
};