https://github.com/EasyCrypt/easycrypt
Revision f7e2b192cdd2d267e33bb243f522e972736f8f8d authored by Pierre-Yves Strub on 15 January 2021, 14:03:21 UTC, committed by Pierre-Yves Strub on 15 January 2021, 14:03:21 UTC
1 parent b5f65bc
Raw File
Tip revision: f7e2b192cdd2d267e33bb243f522e972736f8f8d authored by Pierre-Yves Strub on 15 January 2021, 14:03:21 UTC
Basic results on dvector/dmatrix
Tip revision: f7e2b19
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why3 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top