mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 16:45:15 +00:00
![Alexis Hildebrandt](/assets/img/avatar_default.png)
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
32 lines
934 B
Nix
32 lines
934 B
Nix
{lib, stdenv, fetchurl, cmake, libGLU, libGL, qt5, boost}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "202307";
|
|
build_nr = "1";
|
|
pname = "mcrl2";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.mcrl2.org/download/release/mcrl2-${version}.${build_nr}.tar.gz";
|
|
hash = "sha256-zCHCO8tGyOxqUc0x3t/N3dUh4eG7slemlgK/QZsA4JA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libGLU libGL qt5.qtbase boost ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
description = "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/";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ moretea ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|