cubicle: init at 1.0.2

This commit is contained in:
lucas8 2017-04-22 18:40:09 +02:00
parent f0fac3b578
commit eedc6799b6
No known key found for this signature in database
GPG key ID: FE55E0B4387115FC
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

@ -17492,6 +17492,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; });
};