about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-02-24 11:17:22 +0000
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-22 16:16:31 +0100
commitf35608850741b871679e0a894b8346d0a1938d0c (patch)
treed1e588308fcecab4f450c38a29041c9616c7f527 /pkgs/development/ocaml-modules
parent9007023a70039eab3bb1b47a507c9129a455f680 (diff)
downloadnixlib-f35608850741b871679e0a894b8346d0a1938d0c.tar
nixlib-f35608850741b871679e0a894b8346d0a1938d0c.tar.gz
nixlib-f35608850741b871679e0a894b8346d0a1938d0c.tar.bz2
nixlib-f35608850741b871679e0a894b8346d0a1938d0c.tar.lz
nixlib-f35608850741b871679e0a894b8346d0a1938d0c.tar.xz
nixlib-f35608850741b871679e0a894b8346d0a1938d0c.tar.zst
nixlib-f35608850741b871679e0a894b8346d0a1938d0c.zip
ocamlPackages.alcotest: 1.2.3 -> 1.3.0
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/alcotest/default.nix4
-rw-r--r--pkgs/development/ocaml-modules/alcotest/lwt.nix7
2 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix
index 94626f3c1798..abef3ef7ef46 100644
--- a/pkgs/development/ocaml-modules/alcotest/default.nix
+++ b/pkgs/development/ocaml-modules/alcotest/default.nix
@@ -4,13 +4,13 @@
 
 buildDunePackage rec {
   pname = "alcotest";
-  version = "1.2.3";
+  version = "1.3.0";
 
   useDune2 = true;
 
   src = fetchurl {
     url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-mirage-${version}.tbz";
-    sha256 = "1bmjcivbmd4vib15v4chycgd1gl8js9dk94vzxkdg06zxqd4hp08";
+    sha256 = "sha256-efnevbyolTdNb91zr4pHDcvgaLQQSD01wEu2zMM+iaw=";
   };
 
   propagatedBuildInputs = [ astring cmdliner fmt uuidm re stdlib-shims uutf ];
diff --git a/pkgs/development/ocaml-modules/alcotest/lwt.nix b/pkgs/development/ocaml-modules/alcotest/lwt.nix
index 82efbe91a069..5a57dc0fcc2e 100644
--- a/pkgs/development/ocaml-modules/alcotest/lwt.nix
+++ b/pkgs/development/ocaml-modules/alcotest/lwt.nix
@@ -1,13 +1,16 @@
-{ lib, buildDunePackage, alcotest, logs, ocaml_lwt }:
+{ lib, buildDunePackage, alcotest, logs, ocaml_lwt, fmt
+, re, cmdliner
+}:
 
 buildDunePackage {
   pname = "alcotest-lwt";
 
   inherit (alcotest) version src useDune2;
 
-  propagatedBuildInputs = [ alcotest logs ocaml_lwt ];
+  propagatedBuildInputs = [ alcotest logs ocaml_lwt fmt ];
 
   doCheck = true;
+  checkInputs = [ re cmdliner ];
 
   meta = alcotest.meta // {
     description = "Lwt-based helpers for Alcotest";