Revision c19a2a7084df7f5869323b973d2313d4e0f08907 authored by Pierre-Yves Strub on 03 March 2021, 14:07:57 UTC, committed by Pierre-Yves Strub on 03 March 2021, 14:07:57 UTC
1 parent d6e792c
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