https://github.com/EasyCrypt/easycrypt
Revision 7f8694347e0a621142308984683fcbe09d1efd4d authored by Pierre-Yves Strub on 02 June 2020, 13:57:30 UTC, committed by Pierre-Yves Strub on 02 June 2020, 13:57:30 UTC
1 parent b7af66a
Raw File
Tip revision: 7f8694347e0a621142308984683fcbe09d1efd4d authored by Pierre-Yves Strub on 02 June 2020, 13:57:30 UTC
Tip revision: 7f86943
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