summary refs log tree commit diff
path: root/pkgs/applications/science/logic/petrinizer/default.nix
blob: 3977eb6a4eda0bf69e7d8c7a562b6bcb58c9a13f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ mkDerivation
, async, base, bytestring, containers, fetchFromGitLab, mtl
, parallel-io, parsec, lib, stm, transformers, sbv_7_13, z3
}:

mkDerivation rec {
  pname = "petrinizer";
  version = "0.9.1.1";

  src = fetchFromGitLab {
    domain = "gitlab.lrz.de";
    owner = "i7";
    repo = pname;
    rev = version;
    sha256 = "1n7fzm96gq5rxm2f8w8sr1yzm1zcxpf0b473c6xnhsgqsis5j4xw";
  };

  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    async base bytestring containers mtl parallel-io parsec sbv_7_13 stm
    transformers
  ];
  description = "Safety and Liveness Analysis of Petri Nets with SMT solvers";
  license = lib.licenses.gpl3;
  maintainers = with lib.maintainers; [ raskin ];
}