From 5ed10dc9092419bc97ca741d2fb1894ce12ced94 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 13 Apr 2020 17:34:45 +0200 Subject: [PATCH] ocamlPackages.irmin*: 2.0.0 -> 2.1.0 updated: * irmin * irmin-fs * irmin-git * irmin-graphql * irmin-http * irmin-mem * irmin-pack (also added new dependecy ocaml_lwt) * irmin-test * irmin-unix * irmin-watcher --- pkgs/development/ocaml-modules/irmin/default.nix | 6 +++--- pkgs/development/ocaml-modules/irmin/pack.nix | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/irmin/default.nix b/pkgs/development/ocaml-modules/irmin/default.nix index 2db57671177..cba67759167 100644 --- a/pkgs/development/ocaml-modules/irmin/default.nix +++ b/pkgs/development/ocaml-modules/irmin/default.nix @@ -6,13 +6,13 @@ buildDunePackage rec { pname = "irmin"; - version = "2.0.0"; + version = "2.1.0"; - minimumOCamlVersion = "4.06"; + minimumOCamlVersion = "4.07"; src = fetchurl { url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz"; - sha256 = "09qffvgi5yrm3ghiywlbdhjly8xb5x5njnan213q8j033fzmf2dr"; + sha256 = "1ji8r7zbdmhbk8r8w2hskd9z7pnvirzbhincfxndxgdaxbfkff5g"; }; propagatedBuildInputs = [ astring base64 digestif fmt jsonm logs ocaml_lwt ocamlgraph uri ]; diff --git a/pkgs/development/ocaml-modules/irmin/pack.nix b/pkgs/development/ocaml-modules/irmin/pack.nix index 4eacc719cec..c374b1a2275 100644 --- a/pkgs/development/ocaml-modules/irmin/pack.nix +++ b/pkgs/development/ocaml-modules/irmin/pack.nix @@ -1,12 +1,13 @@ -{ lib, buildDunePackage, alcotest-lwt, index, irmin, irmin-test }: +{ lib, buildDunePackage, alcotest-lwt, index, irmin, irmin-test, ocaml_lwt }: buildDunePackage rec { + minimumOCamlVersion = "4.02.3"; pname = "irmin-pack"; inherit (irmin) version src; - propagatedBuildInputs = [ index irmin ]; + propagatedBuildInputs = [ index irmin ocaml_lwt ]; checkInputs = lib.optionals doCheck [ alcotest-lwt irmin-test ];