2021-01-11 07:54:33 +00:00
|
|
|
{ callPackage, fetchurl, fetchpatch, lib, stdenv
|
2019-06-19 02:01:38 +00:00
|
|
|
, ocamlPackages, coqPackages, rubber, hevea, emacs }:
|
2014-05-01 07:28:52 +00:00
|
|
|
|
2021-08-16 20:50:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "why3";
|
2022-02-18 20:44:12 +00:00
|
|
|
version = "1.4.1";
|
2014-05-01 07:28:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-02-18 20:44:12 +00:00
|
|
|
url = "https://why3.gitlabpages.inria.fr/releases/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "sha256:1rqyypzlvagrn43ykl0c5wxyvnry5fl1ykn3xcvlzgghk96yq3jq";
|
2014-05-01 07:28:52 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 02:01:38 +00:00
|
|
|
buildInputs = with ocamlPackages; [
|
2022-02-18 20:44:12 +00:00
|
|
|
ocaml findlib ocamlgraph zarith menhir
|
2019-06-19 02:01:38 +00:00
|
|
|
# Emacs compilation of why3.el
|
|
|
|
emacs
|
|
|
|
# Documentation
|
|
|
|
rubber hevea
|
|
|
|
# GUI
|
2021-06-26 20:42:23 +00:00
|
|
|
lablgtk3-sourceview3
|
2019-06-19 02:01:38 +00:00
|
|
|
# WebIDE
|
|
|
|
js_of_ocaml js_of_ocaml-ppx
|
2021-06-25 06:53:41 +00:00
|
|
|
# S-expression output for why3pp
|
|
|
|
ppx_deriving ppx_sexp_conv
|
2019-06-19 02:01:38 +00:00
|
|
|
# Coq Support
|
2021-10-31 06:53:32 +00:00
|
|
|
coqPackages.coq coqPackages.flocq
|
2019-06-19 02:01:38 +00:00
|
|
|
];
|
|
|
|
|
2022-02-18 20:44:12 +00:00
|
|
|
propagatedBuildInputs = with ocamlPackages; [ camlzip menhirLib num re sexplib ];
|
2019-06-19 02:01:38 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-verbose-make" ];
|
2016-03-04 06:29:28 +00:00
|
|
|
|
|
|
|
installTargets = [ "install" "install-lib" ];
|
2014-05-01 07:28:52 +00:00
|
|
|
|
2019-06-19 02:01:38 +00:00
|
|
|
passthru.withProvers = callPackage ./with-provers.nix {};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-10-11 22:27:57 +00:00
|
|
|
description = "A platform for deductive program verification";
|
2014-05-01 07:28:52 +00:00
|
|
|
homepage = "http://why3.lri.fr/";
|
2014-10-11 22:27:57 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
2014-05-01 07:28:52 +00:00
|
|
|
};
|
|
|
|
}
|