cubicle: init at 1.0.2
This commit is contained in:
parent
f0fac3b578
commit
eedc6799b6
20
pkgs/applications/science/logic/cubicle/default.nix
Normal file
20
pkgs/applications/science/logic/cubicle/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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; });
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user