Revision 30b7caedd79c1f56e71926beb9faf8b70d507365 authored by Pierre-Yves Strub on 02 April 2021, 07:28:20 UTC, committed by Pierre-Yves Strub on 02 April 2021, 07:28:20 UTC
Co-authored-by: Benjamin Grégoire <benjamin.gregoire@inria.fr>
Co-authored-by: Pierre-Yves Strub <pierre-yves@strub.nu>
1 parent f2abfb4
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