why3: 0.86.2 -> 0.86.3
And merge with ocamlPackages.why3 (the OCaml library would not work correctly if packaged separately).
This commit is contained in:
@@ -2,15 +2,20 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "why3-${version}";
|
||||
version = "0.86.2";
|
||||
version = "0.86.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://gforge.inria.fr/frs/download.php/file/35214/why3-0.86.2.tar.gz;
|
||||
sha256 = "08sa7dmp6yp29xn0m6h98nic4q47vb4ahvaid5drwh522pvwvg10";
|
||||
url = https://gforge.inria.fr/frs/download.php/file/35537/why3-0.86.3.tar.gz;
|
||||
sha256 = "0sph6i4ga9450bk60wpm5cq3psw3g8xprnac7yjfq64iqz1dyz03";
|
||||
};
|
||||
|
||||
buildInputs = with ocamlPackages;
|
||||
[ coq coq.camlp5 ocaml findlib lablgtk ocamlgraph zarith menhir ];
|
||||
buildInputs = (with ocamlPackages; [
|
||||
ocaml findlib lablgtk ocamlgraph zarith menhir ]) ++
|
||||
stdenv.lib.optionals (ocamlPackages.ocaml == coq.ocaml ) [
|
||||
coq coq.camlp5
|
||||
];
|
||||
|
||||
installTargets = [ "install" "install-lib" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A platform for deductive program verification";
|
||||
|
||||
Reference in New Issue
Block a user