about summary refs log tree commit diff
path: root/pkgs/applications/science/logic/cubicle/default.nix
blob: 9bfbcc3f30dfdf617fe4255504c75c0dcea5d5d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 ];
  };
}