Revision c3114bd1c70ec54bde56f486f5c405a4f1f565db authored by Pierre-Yves Strub on 14 October 2020, 06:52:22 UTC, committed by Pierre-Yves Strub on 14 October 2020, 06:52:22 UTC
1 parent 4268b0f
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