Unverified Commit 3bacb178 authored by Ulrik Strid's avatar Ulrik Strid Committed by GitHub
Browse files

Merge pull request #223340 from vbgl/ocaml-eval-fix

ocamlPackages: fix eval
parents f845ba0b 0bd1408d
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