Revision 74142f249214f66295495f22b58c5d2cc411448f authored by Pierre-Yves Strub on 10 June 2020, 14:14:07 UTC, committed by Pierre-Yves Strub on 10 June 2020, 14:14:07 UTC
2 parent s 8057e61 + 4b965ee
Raw File
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