https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 9e556cca2dbf133080abbfa576c1c0f8686074d9 authored by nashpotato on 15 April 2020, 15:14:16 UTC
Resolved bug in multi-parameter instance declaration
Tip revision: 9e556cc
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