mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #178306 from vbgl/ocamlpackages-clean
Three small improvements to ocamlPackages
This commit is contained in:
commit
c49e4ce3fc
3 changed files with 5 additions and 4 deletions
|
@ -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…
Reference in a new issue