https://github.com/EasyCrypt/easycrypt
Revision 7325ae6deb3bf6f38bc15c8718d49d16cdd99351 authored by Pierre-Yves Strub on 10 February 2020, 09:43:29 UTC, committed by Pierre-Yves Strub on 10 February 2020, 09:45:08 UTC
1 parent 9e11412
Raw File
Tip revision: 7325ae6deb3bf6f38bc15c8718d49d16cdd99351 authored by Pierre-Yves Strub on 10 February 2020, 09:43:29 UTC
Refactor PlugAndPray
Tip revision: 7325ae6
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