https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: e15c19fa91bfeaa48aac1e1225d26b3c2e38afba authored by Pierre-Yves Strub on 10 July 2019, 05:57:29 UTC
Merge branch '1.0' into deploy-transeq
Tip revision: e15c19f
default.nix
with import <nixpkgs> {};

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