From 8403e336442f6806f683223b2ef00ac0020197bb Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 13 Jul 2026 10:04:15 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.resource-pooling:=201.2=20?= =?UTF-8?q?=E2=86=92=201.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ocaml-modules/resource-pooling/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/development/ocaml-modules/resource-pooling/default.nix b/pkgs/development/ocaml-modules/resource-pooling/default.nix index aef730c92adf..92d6749a65d0 100644 --- a/pkgs/development/ocaml-modules/resource-pooling/default.nix +++ b/pkgs/development/ocaml-modules/resource-pooling/default.nix @@ -2,28 +2,30 @@ lib, fetchFromGitHub, buildDunePackage, - lwt_log, + logs, + lwt, }: buildDunePackage (finalAttrs: { - version = "1.2"; + version = "1.3"; pname = "resource-pooling"; - minimalOCamlVersion = "4.06"; - src = fetchFromGitHub { owner = "ocsigen"; repo = "resource-pooling"; - rev = finalAttrs.version; - sha256 = "sha256-GNYPxjMTo7y40y7aQdseuFyeVF/hSCZKXfEaH/WIO9w="; + tag = finalAttrs.version; + hash = "sha256-DkuFBPobl0HJ/n8N9u086oxiHe8s/KiwQ5pR5n8oKLc="; }; - propagatedBuildInputs = [ lwt_log ]; + propagatedBuildInputs = [ + logs + lwt + ]; doCheck = true; meta = { - inherit (finalAttrs.src.meta) homepage; + homepage = "https://github.com/ocsigen/resource-pooling/"; description = "Library for pooling resources like connections, threads, or similar"; license = lib.licenses.mit; maintainers = [ lib.maintainers.vbgl ];