2014-05-01 09:28:52 +02:00
|
|
|
{ fetchurl, stdenv, ocaml, ocamlPackages, coq }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "why3-${version}";
|
2014-10-12 00:27:57 +02:00
|
|
|
version = "0.85";
|
2014-05-01 09:28:52 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-12 00:27:57 +02:00
|
|
|
url = "https://gforge.inria.fr/frs/download.php/34074/why3-0.85.tar.gz";
|
|
|
|
sha256 = "0sj1pd50lqvnvyss1f8ysgigdi64s91rrpdrmp7crmcy1npa8apf";
|
2014-05-01 09:28:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = with ocamlPackages;
|
2015-01-26 18:32:11 +01:00
|
|
|
[ coq coq.camlp5 ocaml findlib lablgtk ocamlgraph zarith ];
|
2014-05-01 09:28:52 +02:00
|
|
|
|
2014-10-12 00:27:57 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A platform for deductive program verification";
|
2014-05-01 09:28:52 +02:00
|
|
|
homepage = "http://why3.lri.fr/";
|
2014-10-12 00:27:57 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
2014-05-01 09:28:52 +02:00
|
|
|
};
|
|
|
|
}
|