cubicle: 1.1.2 -> 1.2.0

This commit is contained in:
Weijia Wang 2023-01-09 16:24:05 +01:00 committed by Vincent Laporte
parent 2ec805b168
commit 1f4c190aff
2 changed files with 29 additions and 9 deletions

View file

@ -1,18 +1,40 @@
{ lib, stdenv, fetchurl, ocamlPackages }: { lib
, stdenv
, fetchurl
, autoreconfHook
, which
, ocamlPackages
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "cubicle"; pname = "cubicle";
version = "1.1.2"; version = "1.2.0";
src = fetchurl { src = fetchurl {
url = "http://cubicle.lri.fr/cubicle-${version}.tar.gz"; url = "https://github.com/cubicle-model-checker/cubicle/archive/refs/tags/${version}.tar.gz";
sha256 = "10kk80jdmpdvql88sdjsh7vqzlpaphd8vip2lp47aarxjkwjlz1q"; hash = "sha256-/EtbXpyXqRm0jGcMfGLAEwdr92061edjFys1V7/w6/Y=";
}; };
# https://github.com/cubicle-model-checker/cubicle/issues/1
postPatch = '' 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; { meta = with lib; {
description = "An open source model checker for verifying safety properties of array-based systems"; description = "An open source model checker for verifying safety properties of array-based systems";

View file

@ -36145,9 +36145,7 @@ with pkgs;
crypto-org-wallet = callPackage ../applications/blockchains/crypto-org-wallet { }; crypto-org-wallet = callPackage ../applications/blockchains/crypto-org-wallet { };
cubicle = callPackage ../applications/science/logic/cubicle { cubicle = callPackage ../applications/science/logic/cubicle { };
ocamlPackages = ocaml-ng.ocamlPackages_4_05;
};
cvc3 = callPackage ../applications/science/logic/cvc3 { cvc3 = callPackage ../applications/science/logic/cvc3 {
gmp = lib.overrideDerivation gmp (_: { dontDisableStatic = true; }); gmp = lib.overrideDerivation gmp (_: { dontDisableStatic = true; });