2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, ocamlPackages }:
|
2017-04-22 17:40:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cubicle";
|
2018-12-16 14:21:35 +00:00
|
|
|
version = "1.1.2";
|
2017-04-22 17:40:09 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://cubicle.lri.fr/cubicle-${version}.tar.gz";
|
2018-12-16 14:21:35 +00:00
|
|
|
sha256 = "10kk80jdmpdvql88sdjsh7vqzlpaphd8vip2lp47aarxjkwjlz1q";
|
2017-04-22 17:40:09 +01:00
|
|
|
};
|
|
|
|
|
2017-10-11 08:28:32 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in --replace "\\n" ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = with ocamlPackages; [ ocaml findlib functory ];
|
2017-04-22 17:40:09 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-04-22 17:40:09 +01:00
|
|
|
description = "An open source model checker for verifying safety properties of array-based systems";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://cubicle.lri.fr/";
|
2017-04-22 17:40:09 +01:00
|
|
|
license = licenses.asl20;
|
2017-10-11 08:28:32 +01:00
|
|
|
platforms = platforms.unix;
|
2020-01-21 06:39:52 +00:00
|
|
|
maintainers = with maintainers; [ dwarfmaster ];
|
2017-04-22 17:40:09 +01:00
|
|
|
};
|
|
|
|
}
|