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:
Vincent Laporte
2016-03-04 07:29:28 +01:00
parent b219052bf1
commit 014a30da93
3 changed files with 10 additions and 30 deletions

View File

@@ -1,21 +0,0 @@
{ stdenv, ocaml, findlib, zarith, menhir, why3 }:
let ocaml-version = stdenv.lib.getVersion ocaml; in
assert stdenv.lib.versionAtLeast ocaml-version "4.01";
stdenv.mkDerivation {
name = "ocaml-${why3.name}";
inherit (why3) src;
buildInputs = [ ocaml findlib zarith menhir ];
installTargets = "install-lib";
meta = {
inherit (why3.meta) license homepage;
platforms = ocaml.meta.platforms;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}