2021-05-20 23:08:51 +00:00
|
|
|
{ mkDerivation
|
2020-04-24 23:36:52 +00:00
|
|
|
, async, base, bytestring, containers, fetchFromGitLab, mtl
|
2022-10-21 18:38:19 +00:00
|
|
|
, parallel-io, parsec, lib, stm, transformers, sbv_7_13}:
|
2021-05-20 23:08:51 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
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 = [
|
2021-05-20 23:08:51 +00:00
|
|
|
async base bytestring containers mtl parallel-io parsec sbv_7_13 stm
|
2020-04-24 23:36:52 +00:00
|
|
|
transformers
|
|
|
|
];
|
|
|
|
description = "Safety and Liveness Analysis of Petri Nets with SMT solvers";
|
2021-01-17 00:15:33 +00:00
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
maintainers = with lib.maintainers; [ raskin ];
|
2021-05-20 23:08:51 +00:00
|
|
|
inherit (sbv_7_13.meta) platforms;
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|