Unverified Commit 0bd1408d authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages: fix eval

Evaluation for OCaml < 4.08 has been broken by
d9f76760
parent 9c7e5c7c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
, bos
, core
, core_kernel
, core_unix
, core_unix ? null
, lwt_react
, ocamlgraph
, ppx_sexp_conv
+4 −1
Original line number Diff line number Diff line
{ lib, buildDunePackage, fetchFromGitLab
, ff-sig, zarith, zarith_stubs_js, integers_stubs_js, integers, hex
, ff-sig, zarith
, zarith_stubs_js ? null
, integers_stubs_js
, integers, hex
, alcotest, ff-pbt
}:

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
, async_unix
, cohttp
, conduit-async
, core_unix
, core_unix ? null
, uri
, uri-sexp
, logs
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
, either
, ezjsonm
, zarith
, zarith_stubs_js
, zarith_stubs_js ? null
, hex
, json-data-encoding
, json-data-encoding-bson
+1 −1
Original line number Diff line number Diff line
{ buildDunePackage, lib, faraday, core_unix, async }:
{ buildDunePackage, lib, faraday, core_unix ? null, async }:

buildDunePackage rec {
  pname = "faraday-async";
Loading