2021-01-15 22:18:51 +00:00
|
|
|
{ callPackage, fetchurl, fetchpatch, lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, ocamlPackages, coqPackages, rubber, hevea, emacs }:
|
|
|
|
|
2021-08-22 07:53:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "why3";
|
2022-09-22 12:36:57 +00:00
|
|
|
version = "1.5.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-03-05 16:20:37 +00:00
|
|
|
url = "https://why3.gitlabpages.inria.fr/releases/${pname}-${version}.tar.gz";
|
2022-09-22 12:36:57 +00:00
|
|
|
sha256 = "sha256-vNR7WeiSvg+763GcovoZBFDfncekJMeqNegP4fVw06I=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = with ocamlPackages; [
|
2022-03-05 16:20:37 +00:00
|
|
|
ocaml findlib ocamlgraph zarith menhir
|
2020-04-24 23:36:52 +00:00
|
|
|
# Emacs compilation of why3.el
|
|
|
|
emacs
|
|
|
|
# Documentation
|
|
|
|
rubber hevea
|
|
|
|
# GUI
|
2021-06-28 23:13:55 +00:00
|
|
|
lablgtk3-sourceview3
|
2020-04-24 23:36:52 +00:00
|
|
|
# WebIDE
|
|
|
|
js_of_ocaml js_of_ocaml-ppx
|
2021-06-28 23:13:55 +00:00
|
|
|
# S-expression output for why3pp
|
2022-06-16 17:23:12 +00:00
|
|
|
ppx_deriving ppx_sexp_conv ]
|
|
|
|
++
|
2020-04-24 23:36:52 +00:00
|
|
|
# Coq Support
|
2022-06-16 17:23:12 +00:00
|
|
|
(with coqPackages; [ coq flocq ])
|
|
|
|
;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
propagatedBuildInputs = with ocamlPackages; [ camlzip menhirLib num re sexplib ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-verbose-make" ];
|
|
|
|
|
|
|
|
installTargets = [ "install" "install-lib" ];
|
|
|
|
|
|
|
|
passthru.withProvers = callPackage ./with-provers.nix {};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A platform for deductive program verification";
|
|
|
|
homepage = "http://why3.lri.fr/";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
|
|
|
};
|
|
|
|
}
|