https://github.com/EasyCrypt/easycrypt
Revision e53aab77538317b87a8ad1cce3516fa0d924d3db authored by Pierre-Yves Strub on 25 October 2019, 15:59:30 UTC, committed by Pierre-Yves Strub on 25 October 2019, 15:59:33 UTC
1 parent 6489ade
Raw File
Tip revision: e53aab77538317b87a8ad1cce3516fa0d924d3db authored by Pierre-Yves Strub on 25 October 2019, 15:59:30 UTC
Check .eco after the loader has been configured
Tip revision: e53aab7
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 yojson])
    ;
}
back to top