https://github.com/EasyCrypt/easycrypt
Revision f44260cc7cb55311ec5d81b119fd046dae83f6af authored by Pierre-Yves Strub on 16 April 2020, 09:41:06 UTC, committed by Pierre-Yves Strub on 16 April 2020, 09:41:06 UTC
1 parent 94786bc
Raw File
Tip revision: f44260cc7cb55311ec5d81b119fd046dae83f6af authored by Pierre-Yves Strub on 16 April 2020, 09:41:06 UTC
stdlib: distributions: dmap1E_can
Tip revision: f44260c
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])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top