https://github.com/EasyCrypt/easycrypt
Revision ec03a3cfc2aa2fa68eab5360507b10f1b2400eef authored by Pierre-Yves Strub on 29 November 2019, 13:19:00 UTC, committed by Pierre-Yves Strub on 29 November 2019, 13:19:00 UTC
1 parent 4778cea
Raw File
Tip revision: ec03a3cfc2aa2fa68eab5360507b10f1b2400eef authored by Pierre-Yves Strub on 29 November 2019, 13:19:00 UTC
Tip revision: ec03a3c
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