https://github.com/EasyCrypt/easycrypt
Revision 21e8fce3e5326fa62847f49cb1dc0303051b866c authored by Pierre-Yves Strub on 09 April 2020, 16:21:20 UTC, committed by Pierre-Yves Strub on 09 April 2020, 16:21:20 UTC
1 parent d41a34d
Raw File
Tip revision: 21e8fce3e5326fa62847f49cb1dc0303051b866c authored by Pierre-Yves Strub on 09 April 2020, 16:21:20 UTC
CI: move to slack notification
Tip revision: 21e8fce
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])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top