ocamlPackages.re2: mark broken on darwin

This commit is contained in:
Vincent Laporte 2017-05-31 07:45:28 +00:00
parent e6550cb5c1
commit 68eb2c2379
3 changed files with 3 additions and 9 deletions

View File

@ -1,4 +1,4 @@
{ lib, janePackage, ocamlbuild, cryptokit, ctypes, magic-mime, { stdenv, lib, janePackage, ocamlbuild, cryptokit, ctypes, magic-mime,
ocaml-migrate-parsetree, octavius, ounit, ppx_deriving, re, zarith, ocaml-migrate-parsetree, octavius, ounit, ppx_deriving, re, zarith,
openssl }: openssl }:
@ -328,7 +328,7 @@ rec {
propagatedBuildInputs = [ core_kernel ]; propagatedBuildInputs = [ core_kernel ];
meta = { meta = {
description = "OCaml bindings for RE2"; description = "OCaml bindings for RE2";
platforms = lib.platforms.linux; broken = stdenv.isDarwin;
}; };
}; };
@ -348,7 +348,6 @@ rec {
''; '';
meta = { meta = {
description = "Jane Street Capital's standard library overlay"; description = "Jane Street Capital's standard library overlay";
inherit (re2.meta) platforms;
}; };
}; };
@ -416,7 +415,6 @@ rec {
propagatedBuildInputs = [ core_extended async ]; propagatedBuildInputs = [ core_extended async ];
meta = { meta = {
description = "Shell helpers for Async"; description = "Shell helpers for Async";
inherit (core_extended.meta) platforms;
}; };
}; };
@ -479,7 +477,6 @@ rec {
propagatedBuildInputs = [ core_extended ]; propagatedBuildInputs = [ core_extended ];
meta = { meta = {
description = "Micro-benchmarking library for OCaml"; description = "Micro-benchmarking library for OCaml";
inherit (core_extended.meta) platforms;
}; };
}; };
@ -489,7 +486,6 @@ rec {
propagatedBuildInputs = [ core_extended ]; propagatedBuildInputs = [ core_extended ];
meta = { meta = {
description = "Profiling library"; description = "Profiling library";
inherit (core_extended.meta) platforms;
}; };
}; };
@ -513,7 +509,6 @@ rec {
propagatedBuildInputs = [ async core_extended cryptokit magic-mime ounit ]; propagatedBuildInputs = [ async core_extended cryptokit magic-mime ounit ];
meta = { meta = {
description = "E-mail message parser"; description = "E-mail message parser";
inherit (core_extended.meta) platforms;
}; };
}; };

View File

@ -8,6 +8,5 @@ janePackage {
buildInputs = [ core_extended expect_test_helpers patience_diff ocaml_pcre ]; buildInputs = [ core_extended expect_test_helpers patience_diff ocaml_pcre ];
meta = { meta = {
description = "File Diff using the Patience Diff algorithm"; description = "File Diff using the Patience Diff algorithm";
inherit (core_extended.meta) platforms;
}; };
} }

View File

@ -594,7 +594,7 @@ let
janeStreet = import ../development/ocaml-modules/janestreet { janeStreet = import ../development/ocaml-modules/janestreet {
inherit lib janePackage ocamlbuild ctypes cryptokit magic-mime; inherit lib janePackage ocamlbuild ctypes cryptokit magic-mime;
inherit ocaml-migrate-parsetree octavius ounit ppx_deriving re zarith; inherit ocaml-migrate-parsetree octavius ounit ppx_deriving re zarith;
openssl = pkgs.openssl; inherit (pkgs) stdenv openssl;
}; };
js_build_tools = callPackage ../development/ocaml-modules/janestreet/js-build-tools.nix {}; js_build_tools = callPackage ../development/ocaml-modules/janestreet/js-build-tools.nix {};