8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
25 lines
685 B
Nix
25 lines
685 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nuXmv";
|
|
version = "2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://es-static.fbk.eu/tools/nuxmv/downloads/nuXmv-${version}-linux64.tar.gz";
|
|
sha256 = "0nndrw994clf8lnlcfzdf1mf00vif3fvd4xsiwcjpbyk12091zqr";
|
|
};
|
|
|
|
installPhase= ''
|
|
runHook preInstall
|
|
install -Dm755 -t $out/bin ./bin/nuXmv
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Symbolic model checker for analysis of finite and infinite state systems";
|
|
homepage = "https://nuxmv.fbk.eu/pmwiki.php";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ siraben ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|