https://github.com/EasyCrypt/easycrypt
Revision 734e5bb0cd5e031b470cfd79a8d74384311dc4f4 authored by Pierre-Yves Strub on 10 June 2020, 17:03:25 UTC, committed by Pierre-Yves Strub on 10 June 2020, 17:03:25 UTC
1 parent 41d0d08
Raw File
Tip revision: 734e5bb0cd5e031b470cfd79a8d74384311dc4f4 authored by Pierre-Yves Strub on 10 June 2020, 17:03:25 UTC
Do no search for rewriting patterns modulo conversion.
Tip revision: 734e5bb
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why3 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top