why3: 1.4.0 → 1.4.1

This commit is contained in:
Vincent Laporte 2022-02-18 21:44:12 +01:00 committed by Vincent Laporte
parent 8725b29aa0
commit 056c34167d

View File

@ -3,15 +3,15 @@
stdenv.mkDerivation rec {
pname = "why3";
version = "1.4.0";
version = "1.4.1";
src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/file/38425/why3-${version}.tar.gz";
sha256 = "0lw0cpx347zz9vvwqibmbxgs80fsd16scgk3isscvwxnajpc3rv8";
url = "https://why3.gitlabpages.inria.fr/releases/${pname}-${version}.tar.gz";
sha256 = "sha256:1rqyypzlvagrn43ykl0c5wxyvnry5fl1ykn3xcvlzgghk96yq3jq";
};
buildInputs = with ocamlPackages; [
ocaml findlib ocamlgraph zarith menhir menhirLib
ocaml findlib ocamlgraph zarith menhir
# Emacs compilation of why3.el
emacs
# Documentation
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
coqPackages.coq coqPackages.flocq
];
propagatedBuildInputs = with ocamlPackages; [ camlzip num re sexplib ];
propagatedBuildInputs = with ocamlPackages; [ camlzip menhirLib num re sexplib ];
enableParallelBuilding = true;