Revision bd02fdb680a8c8063866e6c28db2852f27a1a07b authored by Pierre-Yves Strub on 14 October 2020, 06:33:40 UTC, committed by Pierre-Yves Strub on 20 October 2020, 09:34:59 UTC
This imports the variables of M in the active module scope.
1 parent c987761
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