2017-10-11 07:28:32 +00:00
|
|
|
{ stdenv, fetchurl, ocamlPackages }:
|
2017-04-22 16:40:09 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cubicle";
|
2018-12-16 14:21:35 +00:00
|
|
|
version = "1.1.2";
|
2017-04-22 16:40:09 +00: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 16:40:09 +00:00
|
|
|
};
|
|
|
|
|
2017-10-11 07:28:32 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in --replace "\\n" ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = with ocamlPackages; [ ocaml findlib functory ];
|
2017-04-22 16:40:09 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An open source model checker for verifying safety properties of array-based systems";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://cubicle.lri.fr/;
|
2017-04-22 16:40:09 +00:00
|
|
|
license = licenses.asl20;
|
2017-10-11 07:28:32 +00:00
|
|
|
platforms = platforms.unix;
|
2017-04-22 16:40:09 +00:00
|
|
|
maintainers = with maintainers; [ lucas8 ];
|
|
|
|
};
|
|
|
|
}
|