Revision 20a61830f765f48b70031a8e065bb0db0ff723e3 authored by Pierre-Yves Strub on 04 April 2021, 06:42:50 UTC, committed by Pierre-Yves Strub on 04 April 2021, 06:42:50 UTC
1 parent fb59000
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