Unverified Commit 6f50fdb8 authored by Vincent Fischer's avatar Vincent Fischer
Browse files

prism-model-checker: 4.8.1 -> 4.9

parent cc05b7ff
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
{
  lib,
  #  stdenv,
  gcc13Stdenv,
  stdenv,
  gccStdenv,
  coreutils,
  fetchFromGitHub,
  openjdk,
@@ -13,22 +13,17 @@
}:

let
  # The current version of prism does not build with gcc > 13
  # it should be fixed in the upcoming version of prism.
  # at that point revert stdenv' to :
  #
  # stdenv' = if stdenv.hostPlatform.isDarwin then gccStdenv else stdenv;
  stdenv' = gcc13Stdenv;
  stdenv' = if stdenv.hostPlatform.isDarwin then gccStdenv else stdenv;
in
stdenv'.mkDerivation (finalAttrs: {
  pname = "prism-model-checker";
  version = "4.8.1";
  version = "4.9";

  src = fetchFromGitHub {
    owner = "prismmodelchecker";
    repo = "prism";
    rev = "v${finalAttrs.version}";
    hash = "sha256-igFRIjPfx0BFpQjaW/vgMEnH2HLC06aL3IMHh+ELB6U=";
    hash = "sha256-eoyMGrXta49j2h/bStPuzrF6OZd/l2aQBngPbTZEvAo=";
  };

  nativeBuildInputs = [