prism-model-checker: use gcc 13 (#420261)

authored by Aleksana and committed by GitHub ad899942 80dda185

+9 -3
+9 -3
pkgs/by-name/pr/prism-model-checker/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 - gccStdenv, 3 + # stdenv, 4 + gcc13Stdenv, 5 5 coreutils, 6 6 fetchFromGitHub, 7 7 openjdk, ··· 11 11 makeDesktopItem, 12 12 makeWrapper, 13 13 }: 14 + 14 15 let 15 - stdenv' = if stdenv.hostPlatform.isDarwin then gccStdenv else stdenv; 16 + # The current version of prism does not build with gcc > 13 17 + # it should be fixed in the upcoming version of prism. 18 + # at that point revert stdenv' to : 19 + # 20 + # stdenv' = if stdenv.hostPlatform.isDarwin then gccStdenv else stdenv; 21 + stdenv' = gcc13Stdenv; 16 22 in 17 23 stdenv'.mkDerivation (finalAttrs: { 18 24 pname = "prism-model-checker";