depot/third_party/nixpkgs/pkgs/applications/science/logic/cubicle/default.nix
Default email dae973cb59 Project import generated by Copybara.
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
2023-03-08 18:32:21 +02:00

45 lines
991 B
Nix

{ lib
, stdenv
, fetchurl
, autoreconfHook
, which
, ocamlPackages
}:
stdenv.mkDerivation rec {
pname = "cubicle";
version = "1.2.0";
src = fetchurl {
url = "https://github.com/cubicle-model-checker/cubicle/archive/refs/tags/${version}.tar.gz";
hash = "sha256-/EtbXpyXqRm0jGcMfGLAEwdr92061edjFys1V7/w6/Y=";
};
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
which
] ++ (with ocamlPackages; [
findlib
ocaml
]);
buildInputs = with ocamlPackages; [
functory
num
];
# https://github.com/cubicle-model-checker/cubicle/issues/1
env = {
OCAMLC = "ocamlfind ocamlc -package num";
OCAMLOPT = "ocamlfind ocamlopt -package num";
};
meta = with lib; {
description = "An open source model checker for verifying safety properties of array-based systems";
homepage = "https://cubicle.lri.fr/";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ dwarfmaster ];
};
}