about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mirage-block-unix
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-10-08 08:08:08 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-10-14 22:17:56 +0200
commit9f1d6c1c5d0961c99c67a475148e39f6dcf4fb9d (patch)
tree5d388a416df31655050d489200a62862b6a0b623 /pkgs/development/ocaml-modules/mirage-block-unix
parent6a609418031c891510df8a25a806f62534d221a3 (diff)
ocamlPackages.mirage-block-unix: 2.14.1 → 2.14.2
Diffstat (limited to 'pkgs/development/ocaml-modules/mirage-block-unix')
-rw-r--r--pkgs/development/ocaml-modules/mirage-block-unix/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/mirage-block-unix/default.nix b/pkgs/development/ocaml-modules/mirage-block-unix/default.nix
index 34989fdf14db5..1a56ed70401a9 100644
--- a/pkgs/development/ocaml-modules/mirage-block-unix/default.nix
+++ b/pkgs/development/ocaml-modules/mirage-block-unix/default.nix
@@ -1,19 +1,19 @@
-{ lib, fetchurl, buildDunePackage, cstruct-lwt, diet, io-page, logs
+{ lib, fetchurl, buildDunePackage, cstruct-lwt, diet, logs
 , mirage-block, ounit2, rresult, uri }:
 
 buildDunePackage rec {
   pname = "mirage-block-unix";
-  version = "2.14.1";
+  version = "2.14.2";
 
   src = fetchurl {
     url =
       "https://github.com/mirage/mirage-block-unix/releases/download/v${version}/mirage-block-unix-${version}.tbz";
-    sha256 = "sha256-FcUhbjHKT11ePDXaAVzUdV/WOHoxMoXyZKG5ikKpBNU=";
+    sha256 = "sha256-6ReAzd+pCd5ccmXOh6GlSxHo4GuEgptxLha62n+dBsE=";
   };
 
-  minimalOCamlVersion = "4.06";
+  minimalOCamlVersion = "4.08";
 
-  propagatedBuildInputs = [ cstruct-lwt io-page logs mirage-block rresult uri ];
+  propagatedBuildInputs = [ cstruct-lwt logs mirage-block rresult uri ];
 
   doCheck = true;
   checkInputs = [ diet ounit2 ];