summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science/logic/cubicle/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/logic/cubicle/default.nix')
-rw-r--r--pkgs/applications/science/logic/cubicle/default.nix34
1 files changed, 28 insertions, 6 deletions
diff --git a/pkgs/applications/science/logic/cubicle/default.nix b/pkgs/applications/science/logic/cubicle/default.nix
index aa3fba635ffc..4719a69c0128 100644
--- a/pkgs/applications/science/logic/cubicle/default.nix
+++ b/pkgs/applications/science/logic/cubicle/default.nix
@@ -1,18 +1,40 @@
-{ lib, stdenv, fetchurl, ocamlPackages }:
+{ lib
+, stdenv
+, fetchurl
+, autoreconfHook
+, which
+, ocamlPackages
+}:
stdenv.mkDerivation rec {
pname = "cubicle";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "http://cubicle.lri.fr/cubicle-${version}.tar.gz";
- sha256 = "10kk80jdmpdvql88sdjsh7vqzlpaphd8vip2lp47aarxjkwjlz1q";
+ url = "https://github.com/cubicle-model-checker/cubicle/archive/refs/tags/${version}.tar.gz";
+ hash = "sha256-/EtbXpyXqRm0jGcMfGLAEwdr92061edjFys1V7/w6/Y=";
};
+ # https://github.com/cubicle-model-checker/cubicle/issues/1
postPatch = ''
- substituteInPlace Makefile.in --replace "\\n" ""
+ substituteInPlace Makefile.in \
+ --replace "@OCAMLC@" "ocamlfind ocamlc -package num" \
+ --replace "@OCAMLOPT@" "ocamlfind ocamlopt -package num"
'';
- buildInputs = with ocamlPackages; [ ocaml findlib functory ];
+ strictDeps = true;
+
+ nativeBuildInputs = [
+ autoreconfHook
+ which
+ ] ++ (with ocamlPackages; [
+ findlib
+ ocaml
+ ]);
+
+ buildInputs = with ocamlPackages; [
+ functory
+ num
+ ];
meta = with lib; {
description = "An open source model checker for verifying safety properties of array-based systems";