nixpkgs/pkgs/applications/science/logic/why3/default.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2019-06-19 02:01:38 +00:00
{ callPackage, fetchurl, stdenv
, ocamlPackages, coqPackages, rubber, hevea, emacs }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "why3";
2019-11-11 11:30:22 +00:00
version = "1.2.1";
src = fetchurl {
2019-11-11 11:30:22 +00:00
url = https://gforge.inria.fr/frs/download.php/file/38185/why3-1.2.1.tar.gz;
sha256 = "014gkwisjp05x3342zxkryb729p02ngx1hcjjsrplpa53jzgz647";
};
2019-06-19 02:01:38 +00:00
buildInputs = with ocamlPackages; [
ocaml findlib ocamlgraph zarith menhir
# Compressed Sessions
# Emacs compilation of why3.el
emacs
# Documentation
rubber hevea
# GUI
lablgtk
# WebIDE
js_of_ocaml js_of_ocaml-ppx
# Coq Support
coqPackages.coq coqPackages.flocq ocamlPackages.camlp5
];
propagatedBuildInputs = with ocamlPackages; [ camlzip num ];
enableParallelBuilding = true;
# Remove unnecessary call to which
patches = [ ./configure.patch ];
configureFlags = [ "--enable-verbose-make" ];
installTargets = [ "install" "install-lib" ];
2019-06-19 02:01:38 +00:00
passthru.withProvers = callPackage ./with-provers.nix {};
2014-10-11 22:27:57 +00:00
meta = with stdenv.lib; {
description = "A platform for deductive program verification";
homepage = "http://why3.lri.fr/";
2014-10-11 22:27:57 +00:00
license = licenses.lgpl21;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice vbgl ];
};
}