nixpkgs/pkgs/applications/science/logic/mcrl2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
931 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, cmake, libGLU, libGL, qt5, boost}:
2016-04-12 10:12:46 +00:00
stdenv.mkDerivation rec {
2022-07-27 05:25:01 +00:00
version = "202206";
2017-09-08 14:26:41 +00:00
build_nr = "1";
pname = "mcrl2";
2016-04-12 10:12:46 +00:00
src = fetchurl {
url = "https://www.mcrl2.org/download/release/mcrl2-${version}.${build_nr}.tar.gz";
2022-07-27 05:25:01 +00:00
sha256 = "KoLt8IU/vCdYqzJukNuaZfl8bWiOKB0UxWHEdQj3buU=";
2016-04-12 10:12:46 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libGLU libGL qt5.qtbase boost ];
2016-04-12 10:12:46 +00:00
dontWrapQtApps = true;
meta = with lib; {
broken = stdenv.isDarwin;
2016-04-12 10:12:46 +00:00
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 = "https://www.mcrl2.org/";
2016-04-12 10:12:46 +00:00
license = licenses.boost;
maintainers = with maintainers; [ moretea ];
platforms = platforms.unix;
};
}