From 93597876cb2003b22287b0b7a61e87d63f545d33 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 7 Oct 2025 23:07:51 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.batteries:=203.9.0=20=E2=86=92=20?= =?UTF-8?q?3.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/batteries/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index a6a2974ce53c..c86ac0591a1b 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -11,17 +11,17 @@ doCheck ? lib.versionAtLeast ocaml.version "4.08", }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "batteries"; - version = "3.9.0"; + version = "3.10.0"; minimalOCamlVersion = "4.05"; src = fetchFromGitHub { owner = "ocaml-batteries-team"; repo = "batteries-included"; - rev = "v${version}"; - hash = "sha256-+PGfExdvp3WyX1s8dLTBYp1SoUOBkzrxyqMUuaW6Bto="; + tag = "v${finalAttrs.version}"; + hash = "sha256-cD0O4kEDE58yCYnUuS83O1CJNHJuCGVhvKJSKQeQGkc="; }; nativeCheckInputs = [ qtest ]; @@ -50,4 +50,4 @@ buildDunePackage rec { lib.maintainers.maggesi ]; }; -} +})