2018-07-21 02:44:44 +02:00
|
|
|
{stdenv, fetchurl, cmake, libGLU_combined, qt5, boost}:
|
2016-04-12 12:12:46 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-08 16:26:41 +02:00
|
|
|
version = "201707";
|
|
|
|
build_nr = "1";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mcrl2";
|
2016-04-12 12:12:46 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.mcrl2.org/download/release/mcrl2-${version}.${build_nr}.tar.gz";
|
2017-09-08 16:26:41 +02:00
|
|
|
sha256 = "1c8h94ja7271ph61zrcgnjgblxppld6v22f7f900prjgzbcfy14m";
|
2016-04-12 12:12:46 +02:00
|
|
|
};
|
|
|
|
|
2018-02-24 14:12:44 +01:00
|
|
|
buildInputs = [ cmake libGLU_combined qt5.qtbase boost ];
|
2016-04-12 12:12:46 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A toolset for model-checking concurrent systems and protocols";
|
|
|
|
longDescription = ''
|
|
|
|
A formal specification language with an associated toolset,
|
|
|
|
that can be used for modelling, validation and verification of
|
|
|
|
concurrent systems and protocols
|
|
|
|
'';
|
2018-06-23 13:34:55 +02:00
|
|
|
homepage = https://www.mcrl2.org/;
|
2016-04-12 12:12:46 +02:00
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ moretea ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|