https://github.com/EasyCrypt/easycrypt
Revision 2e7d1e6aa74fe6735716dacec7baef2800400c47 authored by Benjamin Gregoire on 27 January 2020, 09:31:49 UTC, committed by Benjamin Gregoire on 27 January 2020, 09:31:49 UTC
1 parent 74084f2
Raw File
Tip revision: 2e7d1e6aa74fe6735716dacec7baef2800400c47 authored by Benjamin Gregoire on 27 January 2020, 09:31:49 UTC
First version that seems to work
Tip revision: 2e7d1e6
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