https://github.com/EasyCrypt/easycrypt
Revision 3bbc09bdf03623676b484e29503270f686971106 authored by Benjamin Gregoire on 13 September 2019, 09:39:56 UTC, committed by Benjamin Gregoire on 13 September 2019, 09:39:56 UTC
1 parent 746d64c
Raw File
Tip revision: 3bbc09bdf03623676b484e29503270f686971106 authored by Benjamin Gregoire on 13 September 2019, 09:39:56 UTC
add AEAD
Tip revision: 3bbc09b
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