mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
e12230e716
why3: 1.5.1 → 1.6.0 ocamlPackages.lambdapi: 2.2.1 → 2.3.1 Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ callPackage, fetchurl, lib, stdenv
|
|
, ocamlPackages, coqPackages, rubber, hevea, emacs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "why3";
|
|
version = "1.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://why3.gitlabpages.inria.fr/releases/${pname}-${version}.tar.gz";
|
|
hash = "sha256-hFvM6kHScaCtcHCc6Vezl9CR7BFbiKPoTEh7kj0ZJxw=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = with ocamlPackages; [
|
|
ocaml findlib menhir
|
|
# Coq Support
|
|
coqPackages.coq
|
|
];
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
ocamlgraph zarith
|
|
# Emacs compilation of why3.el
|
|
emacs
|
|
# Documentation
|
|
rubber hevea
|
|
# GUI
|
|
lablgtk3-sourceview3
|
|
# WebIDE
|
|
js_of_ocaml js_of_ocaml-ppx
|
|
# S-expression output for why3pp
|
|
ppx_deriving ppx_sexp_conv ]
|
|
++
|
|
# Coq Support
|
|
(with coqPackages; [ coq flocq ])
|
|
;
|
|
|
|
propagatedBuildInputs = with ocamlPackages; [ camlzip menhirLib num re sexplib ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [ "--enable-verbose-make" ];
|
|
|
|
installTargets = [ "install" "install-lib" ];
|
|
|
|
passthru.withProvers = callPackage ./with-provers.nix {};
|
|
|
|
meta = with lib; {
|
|
description = "A platform for deductive program verification";
|
|
homepage = "https://why3.lri.fr/";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
|
};
|
|
}
|