Commit 0f4f35c7 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.fmt: 0.8.9 → 0.9.0

parent 30942c90
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ buildDunePackage rec {
  checkInputs = [ alcotest ppx_let ];
  buildInputs = [ ocaml-syntax-shims ];
  propagatedBuildInputs = [ bigstringaf result ];
  doCheck = lib.versionAtLeast ocaml.version "4.05";
  doCheck = lib.versionAtLeast ocaml.version "4.08";

  meta = {
    homepage = "https://github.com/inhabitedtype/angstrom";
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ buildDunePackage rec {
  };

  # otherwise fmt breaks evaluation
  doCheck = lib.versionAtLeast ocaml.version "4.05";
  doCheck = lib.versionAtLeast ocaml.version "4.08";
  checkInputs = [ alcotest bos rresult ];

  meta = {
+2 −2
Original line number Diff line number Diff line
{ lib, buildDunePackage, fetchurl
{ lib, buildDunePackage, ocaml, fetchurl
, bigarray-compat, alcotest, astring, fpath, bos, findlib, pkg-config
}:

@@ -20,7 +20,7 @@ buildDunePackage rec {

  nativeBuildInputs = [ findlib pkg-config ];
  checkInputs = [ alcotest astring fpath bos ];
  doCheck = true;
  doCheck = lib.versionAtLeast ocaml.version "4.08";

  meta = with lib; {
    homepage = "https://github.com/dinosaure/overlap";
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ buildDunePackage rec {
  nativeBuildInputs = [ pkg-config ];
  checkInputs = [ alcotest ];
  propagatedBuildInputs = [ bigarray-compat ];
  doCheck = lib.versionAtLeast ocaml.version "4.05";
  doCheck = lib.versionAtLeast ocaml.version "4.08";

  meta = {
    description = "Bigstring intrinsics and fast blits based on memcpy/memmove";
+2 −2
Original line number Diff line number Diff line
@@ -23,8 +23,8 @@ buildDunePackage rec {

  propagatedBuildInputs = [ fmt eqaf ];

  # alcotest isn't available for OCaml < 4.05 due to fmt
  doCheck = lib.versionAtLeast ocaml.version "4.05";
  # alcotest isn't available for OCaml < 4.08 due to fmt
  doCheck = lib.versionAtLeast ocaml.version "4.08";
  checkInputs = [ alcotest ];

  meta = {
Loading