https://github.com/EasyCrypt/easycrypt
Revision 5f1ed5aff542b8b96aca578f8aefe3668116405f authored by Pierre-Yves Strub on 21 April 2021, 08:28:34 UTC, committed by Pierre-Yves Strub on 21 April 2021, 08:28:34 UTC
1 parent bffac06
Raw File
Tip revision: 5f1ed5aff542b8b96aca578f8aefe3668116405f authored by Pierre-Yves Strub on 21 April 2021, 08:28:34 UTC
README
Tip revision: 5f1ed5a
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