2022-10-21 18:38:19 +00:00
|
|
|
{ callPackage, fetchurl, lib, stdenv
|
2024-01-02 11:29:13 +00:00
|
|
|
, ocamlPackages, coqPackages, rubber, hevea, emacs
|
|
|
|
, version ? "1.7.0"
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-08-22 07:53:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "why3";
|
2024-01-02 11:29:13 +00:00
|
|
|
inherit version;
|
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";
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = {
|
|
|
|
"1.7.0" = "sha256-rygrjzuJVukOvpuXTG/yeoEP98ZFkLQHObgc3My1PVY=";
|
|
|
|
"1.6.0" = "sha256-hFvM6kHScaCtcHCc6Vezl9CR7BFbiKPoTEh7kj0ZJxw=";
|
|
|
|
}."${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = with ocamlPackages; [
|
|
|
|
ocaml findlib menhir
|
|
|
|
# Coq Support
|
|
|
|
coqPackages.coq
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = with ocamlPackages; [
|
2023-02-09 11:40:11 +00:00
|
|
|
ocamlgraph zarith
|
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";
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://why3.lri.fr/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
|
|
|
};
|
|
|
|
}
|