3
0
Fork 0
forked from mirrors/nixpkgs

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,
openssl }:
@ -328,7 +328,7 @@ rec {
propagatedBuildInputs = [ core_kernel ];
meta = {
description = "OCaml bindings for RE2";
platforms = lib.platforms.linux;
broken = stdenv.isDarwin;
};
};
@ -348,7 +348,6 @@ rec {
'';
meta = {
description = "Jane Street Capital's standard library overlay";
inherit (re2.meta) platforms;
};
};
@ -416,7 +415,6 @@ rec {
propagatedBuildInputs = [ core_extended async ];
meta = {
description = "Shell helpers for Async";
inherit (core_extended.meta) platforms;
};
};
@ -479,7 +477,6 @@ rec {
propagatedBuildInputs = [ core_extended ];
meta = {
description = "Micro-benchmarking library for OCaml";
inherit (core_extended.meta) platforms;
};
};
@ -489,7 +486,6 @@ rec {
propagatedBuildInputs = [ core_extended ];
meta = {
description = "Profiling library";
inherit (core_extended.meta) platforms;
};
};
@ -513,7 +509,6 @@ rec {
propagatedBuildInputs = [ async core_extended cryptokit magic-mime ounit ];
meta = {
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 ];
meta = {
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 {
inherit lib janePackage ocamlbuild ctypes cryptokit magic-mime;
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 {};