https://github.com/EasyCrypt/easycrypt
Revision e58c36ab28313bdf2008c187d23078d6a59e3b14 authored by Francois Dupressoir on 07 November 2019, 16:19:02 UTC, committed by Pierre-Yves Strub on 07 November 2019, 16:19:02 UTC
1 parent e53aab7
Raw File
Tip revision: e58c36ab28313bdf2008c187d23078d6a59e3b14 authored by Francois Dupressoir on 07 November 2019, 16:19:02 UTC
add the full PRG tutorial from FOSAD (#35)
Tip revision: e58c36a
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