https://github.com/EasyCrypt/easycrypt
Revision 44b23b50222744813c9824e7911f9249045f218e authored by Pierre-Yves Strub on 15 February 2020, 07:19:25 UTC, committed by Pierre-Yves Strub on 15 February 2020, 07:19:25 UTC
1 parent 11a8759
Raw File
Tip revision: 44b23b50222744813c9824e7911f9249045f218e authored by Pierre-Yves Strub on 15 February 2020, 07:19:25 UTC
Allow operators of the form 'n where n is a *fixed* natural number
Tip revision: 44b23b5
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