https://github.com/EasyCrypt/easycrypt
Revision 88e05a0eeb88e2a247bc0c0c0625f0212376fc1d authored by Benjamin Gregoire on 12 January 2021, 14:55:42 UTC, committed by Benjamin Gregoire on 12 January 2021, 14:55:42 UTC
1 parent 5583bca
Raw File
Tip revision: 88e05a0eeb88e2a247bc0c0c0625f0212376fc1d authored by Benjamin Gregoire on 12 January 2021, 14:55:42 UTC
t_subst not in the trusted base + some improvement to />.
Tip revision: 88e05a0
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