about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-09-14 07:18:54 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-09-14 19:04:34 +0200
commitee55809e3162f9157a7579b59d4b9caf6e931686 (patch)
treee861caf047ca99c411132a027c8225712c3a00de
parent14148976e43eb8d6dc4da9a6e7199346d7fd50f7 (diff)
downloadnixlib-ee55809e3162f9157a7579b59d4b9caf6e931686.tar
nixlib-ee55809e3162f9157a7579b59d4b9caf6e931686.tar.gz
nixlib-ee55809e3162f9157a7579b59d4b9caf6e931686.tar.bz2
nixlib-ee55809e3162f9157a7579b59d4b9caf6e931686.tar.lz
nixlib-ee55809e3162f9157a7579b59d4b9caf6e931686.tar.xz
nixlib-ee55809e3162f9157a7579b59d4b9caf6e931686.tar.zst
nixlib-ee55809e3162f9157a7579b59d4b9caf6e931686.zip
ocamlPackages.piaf: disable (failing) tests
-rw-r--r--pkgs/development/ocaml-modules/piaf/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/piaf/default.nix b/pkgs/development/ocaml-modules/piaf/default.nix
index 5f1834c5f100..0d0ec1594d40 100644
--- a/pkgs/development/ocaml-modules/piaf/default.nix
+++ b/pkgs/development/ocaml-modules/piaf/default.nix
@@ -8,7 +8,6 @@
 , lwt_ssl
 , magic-mime
 , mrmime
-, openssl
 , pecu
 , psq
 , ssl
@@ -28,8 +27,6 @@ buildDunePackage rec {
     substituteInPlace ./vendor/dune --replace "mrmime.prettym" "prettym"
   '';
 
-  useDune2 = true;
-
   propagatedBuildInputs = [
     logs
     magic-mime
@@ -43,7 +40,8 @@ buildDunePackage rec {
     alcotest-lwt
     dune-site
   ];
-  doCheck = true;
+  # Check fails with OpenSSL 3
+  doCheck = false;
 
   meta = {
     description = "An HTTP library with HTTP/2 support written entirely in OCaml";