From 0497f197e171d2b26a037f63470a83f278d20ef4 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 14 Jan 2026 03:32:56 +0100 Subject: [PATCH] =?UTF-8?q?ocamlPackages.mlx:=200.10=20=E2=86=92=200.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/mlx/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/mlx/default.nix b/pkgs/development/ocaml-modules/mlx/default.nix index c2cf06545993..fab39d7d2b27 100644 --- a/pkgs/development/ocaml-modules/mlx/default.nix +++ b/pkgs/development/ocaml-modules/mlx/default.nix @@ -6,17 +6,17 @@ menhir, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "mlx"; - version = "0.10"; + version = "0.11"; minimalOCamlVersion = "4.14"; src = fetchFromGitHub { owner = "ocaml-mlx"; repo = "mlx"; - rev = version; - hash = "sha256-g2v6U4lubYIVKUkU0j+OwtPxK9tKvleuX+vA4ljJ1bA="; + tag = finalAttrs.version; + hash = "sha256-6cz/nbFGSxE1minncJujZi14TmM8ctDygJP4rmewYgo="; }; buildInputs = [ @@ -30,4 +30,4 @@ buildDunePackage rec { license = lib.licenses.lgpl21Plus; maintainers = with lib.maintainers; [ Denommus ]; }; -} +})