···1{
2 lib,
3+ # stdenv,
4+ gcc13Stdenv,
5 coreutils,
6 fetchFromGitHub,
7 openjdk,
···11 makeDesktopItem,
12 makeWrapper,
13}:
14+15let
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;
22in
23stdenv'.mkDerivation (finalAttrs: {
24 pname = "prism-model-checker";