From eb6d0e7a2cdc5331edc30580399c75fc10b86c66 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 25 Jun 2026 22:04:34 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.batteries:=203.10.0=20=E2=86=92?= =?UTF-8?q?=203.11.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/batteries/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index 707c855b4944..adf0cfd38fd5 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -2,26 +2,23 @@ lib, fetchFromGitHub, buildDunePackage, - ocaml, ounit, qtest, qcheck, num, camlp-streams, - doCheck ? lib.versionAtLeast ocaml.version "4.08", + doCheck ? true, }: buildDunePackage (finalAttrs: { pname = "batteries"; - version = "3.10.0"; - - minimalOCamlVersion = "4.05"; + version = "3.11.0"; src = fetchFromGitHub { owner = "ocaml-batteries-team"; repo = "batteries-included"; tag = "v${finalAttrs.version}"; - hash = "sha256-cD0O4kEDE58yCYnUuS83O1CJNHJuCGVhvKJSKQeQGkc="; + hash = "sha256-RFozhk/kGgBg/2WnTYCNwi+kZwJ+l5o7z0YVons5yyw="; }; nativeCheckInputs = [ qtest ];