Merge pull request #178306 from vbgl/ocamlpackages-clean

Three small improvements to ocamlPackages
main
Rick van Schijndel 2 years ago committed by GitHub
commit c49e4ce3fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/development/ocaml-modules/fmt/default.nix
  2. 2
      pkgs/development/ocaml-modules/ocaml-r/default.nix
  3. 3
      pkgs/development/ocaml-modules/parmap/default.nix

@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
buildInputs = [ topkg ];
propagatedBuildInputs = [ cmdliner seq stdlib-shims ];
buildInputs = [ cmdliner topkg ];
propagatedBuildInputs = [ seq stdlib-shims ];
strictDeps = true;

@ -37,6 +37,8 @@ buildDunePackage rec {
checkInputs = [ alcotest ];
meta = {
# This has been broken by the update to R 4.2.0 (#171597)
broken = true;
description = "OCaml bindings for the R interpreter";
inherit (src.meta) homepage;
license = lib.licenses.gpl3;

@ -10,13 +10,12 @@ buildDunePackage rec {
};
minimalOCamlVersion = "4.03";
useDune2 = true;
buildInputs = [
dune-configurator
];
doCheck = true;
doCheck = false; # prevent running slow benchmarks
meta = with lib; {
description = "Library for multicore parallel programming";

Loading…
Cancel
Save