···11{
22 lib,
33- stdenv,
44- gccStdenv,
33+ # stdenv,
44+ gcc13Stdenv,
55 coreutils,
66 fetchFromGitHub,
77 openjdk,
···1111 makeDesktopItem,
1212 makeWrapper,
1313}:
1414+1415let
1515- stdenv' = if stdenv.hostPlatform.isDarwin then gccStdenv else stdenv;
1616+ # The current version of prism does not build with gcc > 13
1717+ # it should be fixed in the upcoming version of prism.
1818+ # at that point revert stdenv' to :
1919+ #
2020+ # stdenv' = if stdenv.hostPlatform.isDarwin then gccStdenv else stdenv;
2121+ stdenv' = gcc13Stdenv;
1622in
1723stdenv'.mkDerivation (finalAttrs: {
1824 pname = "prism-model-checker";