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