Revision 5d030a1796255d05c8812d65d8ad1af5b3ebb80f authored by François Dupressoir on 12 May 2022, 06:47:58 UTC, committed by Pierre-Yves Strub on 12 May 2022, 06:49:18 UTC
This removes the error message when the RHS is a procedure call. This
allows us to accept things that were rejected before, when a procedure
and operator share their name.

A follow-up may re-enable it.

Fix #189
1 parent cdc065e
Raw File
default.nix
with import <nixpkgs> {};

if !lib.versionAtLeast why3.version "1.4" then
  throw "please update your nixpkgs channel: nix-channel --update"
else
  stdenv.mkDerivation {
    name = "easycrypt-1.0";
    src = ./.;
    buildInputs = [ why3 ] ++ (with ocamlPackages; [
      ocaml
      findlib
      batteries
      dune_2
      dune-build-info
      dune-site
      inifiles
      menhir
      menhirLib
      merlin
      yojson
      zarith
    ]);
    installFlags = [ "PREFIX=$(out)" ];
  }
back to top