https://github.com/EasyCrypt/easycrypt
Revision 3a626d5504b0d54870fb3a13830f3172b1fa302a authored by François Dupressoir on 30 March 2021, 13:09:44 UTC, committed by François Dupressoir on 30 March 2021, 13:09:44 UTC
Existing .eco cached results are used, but new ones are not generated
1 parent c57f05e
Raw File
Tip revision: 3a626d5504b0d54870fb3a13830f3172b1fa302a authored by François Dupressoir on 30 March 2021, 13:09:44 UTC
Add a -no-eco option to disable .eco generation
Tip revision: 3a626d5
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