2015-12-01 09:25:38 +01:00
|
|
|
{ fetchurl, stdenv, ocamlPackages, coq }:
|
2014-05-01 09:28:52 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "why3-${version}";
|
2018-01-14 06:51:06 +01:00
|
|
|
version = "0.88.3";
|
2014-05-01 09:28:52 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-14 06:51:06 +01:00
|
|
|
url = https://gforge.inria.fr/frs/download.php/file/37313/why3-0.88.3.tar.gz;
|
|
|
|
sha256 = "0limdqy9l5bjzwhdalcfdyh0b6laxgiphhvr4bby9p0030agssiy";
|
2014-05-01 09:28:52 +02:00
|
|
|
};
|
|
|
|
|
2016-03-04 07:29:28 +01:00
|
|
|
buildInputs = (with ocamlPackages; [
|
|
|
|
ocaml findlib lablgtk ocamlgraph zarith menhir ]) ++
|
|
|
|
stdenv.lib.optionals (ocamlPackages.ocaml == coq.ocaml ) [
|
|
|
|
coq coq.camlp5
|
|
|
|
];
|
|
|
|
|
|
|
|
installTargets = [ "install" "install-lib" ];
|
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
|
|
|
};
|
|
|
|
}
|