https://github.com/EasyCrypt/easycrypt
Revision f2abfb40b09ee73d176c6a1114b8d15ca932d896 authored by Francois Dupressoir on 30 March 2021, 14:59:52 UTC, committed by GitHub on 30 March 2021, 14:59:52 UTC
Add a -no-eco option to disable .eco generation
2 parent s c57f05e + 3a626d5
Raw File
Tip revision: f2abfb40b09ee73d176c6a1114b8d15ca932d896 authored by Francois Dupressoir on 30 March 2021, 14:59:52 UTC
Merge pull request #60 from EasyCrypt/deploy-no-eco
Tip revision: f2abfb4
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