2017-09-10 17:59:45 +02:00
|
|
|
{stdenv, fetchurl, xlibs, cmake, subversion, mesa, qt5, boost,
|
2016-04-12 12:12:46 +02:00
|
|
|
python27, python27Packages}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-08 16:26:41 +02:00
|
|
|
version = "201707";
|
|
|
|
build_nr = "1";
|
2016-04-12 12:12:46 +02:00
|
|
|
name = "mcrl2-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-08 16:26:41 +02:00
|
|
|
url = "http://www.mcrl2.org/download/release/mcrl2-${version}.${build_nr}.tar.gz";
|
|
|
|
sha256 = "1c8h94ja7271ph61zrcgnjgblxppld6v22f7f900prjgzbcfy14m";
|
2016-04-12 12:12:46 +02:00
|
|
|
};
|
|
|
|
|
2017-09-10 17:59:45 +02:00
|
|
|
buildInputs = [ cmake mesa 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
|
|
|
|
'';
|
|
|
|
homepage = http://www.mcrl2.org/;
|
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ moretea ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|