Merge pull request #223340 from vbgl/ocaml-eval-fix
ocamlPackages: fix eval
This commit is contained in:
commit
3bacb178e5
9 changed files with 13 additions and 10 deletions
|
@ -7,7 +7,7 @@
|
|||
, bos
|
||||
, core
|
||||
, core_kernel
|
||||
, core_unix
|
||||
, core_unix ? null
|
||||
, lwt_react
|
||||
, ocamlgraph
|
||||
, ppx_sexp_conv
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
{ 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
|
||||
}:
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
, async_unix
|
||||
, cohttp
|
||||
, conduit-async
|
||||
, core_unix
|
||||
, core_unix ? null
|
||||
, uri
|
||||
, uri-sexp
|
||||
, logs
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, either
|
||||
, ezjsonm
|
||||
, zarith
|
||||
, zarith_stubs_js
|
||||
, zarith_stubs_js ? null
|
||||
, hex
|
||||
, json-data-encoding
|
||||
, json-data-encoding-bson
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ buildDunePackage, lib, faraday, core_unix, async }:
|
||||
{ buildDunePackage, lib, faraday, core_unix ? null, async }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "faraday-async";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchFromGitHub, buildDunePackage, core, core_unix, pkg-config
|
||||
{ lib, fetchFromGitHub, buildDunePackage, core, core_unix ? null, pkg-config
|
||||
, sqlite }:
|
||||
buildDunePackage rec {
|
||||
pname = "hack_parallel";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
lib, fetchFromGitHub, buildDunePackage
|
||||
, zarith_stubs_js
|
||||
, zarith_stubs_js ? null
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, fetchFromGitHub, buildDunePackage, async, cohttp_static_handler
|
||||
, core_unix, owee, ppx_jane, shell }:
|
||||
{ lib, fetchFromGitHub, buildDunePackage, async, cohttp_static_handler ? null
|
||||
, core_unix ? null, owee, ppx_jane, shell ? null }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "magic-trace";
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
, cmdliner
|
||||
, core
|
||||
, core_bench
|
||||
, core_unix
|
||||
, core_unix ? null
|
||||
, js_of_ocaml
|
||||
, js_of_ocaml-ppx
|
||||
, ppx_deriving_yojson
|
||||
|
|
Loading…
Reference in a new issue