Merge pull request #25117 from lucas8/cubicle

cubicle: init at 1.0.2
This commit is contained in:
Michael Raskin 2017-05-01 14:26:52 +02:00 committed by GitHub
commit 49c419cf3e
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, ocaml, ocamlPackages }:
stdenv.mkDerivation rec {
name = "cubicle-${version}";
version = "1.0.2";
src = fetchurl {
url = "http://cubicle.lri.fr/cubicle-${version}.tar.gz";
sha256 = "1fg39vlr2d5067512df32hkw6g8vglxj1m47md5mw3pn3ij6dpsx";
};
buildInputs = [ ocaml ocamlPackages.functory ];
meta = with stdenv.lib; {
description = "An open source model checker for verifying safety properties of array-based systems";
homepage = "http://cubicle.lri.fr/";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ lucas8 ];
};
}

View File

@ -17613,6 +17613,8 @@ with pkgs;
cryptoverif = callPackage ../applications/science/logic/cryptoverif { };
cubicle = callPackage ../applications/science/logic/cubicle { };
cvc3 = callPackage ../applications/science/logic/cvc3 {
gmp = lib.overrideDerivation gmp (a: { dontDisableStatic = true; });
};