Revision 61de4b9b287eaa1ba0fc767a7ddace7ac1d660bc authored by Pierre-Yves Strub on 12 November 2020, 08:24:07 UTC, committed by Pierre-Yves Strub on 12 November 2020, 08:24:20 UTC
1 parent b360fa8
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