From 8a4404e49b8184ac70098ab8deb6f52700007338 Mon Sep 17 00:00:00 2001 From: Yifei Sun Date: Tue, 18 Aug 2026 13:36:13 +0200 Subject: [PATCH] ocamlPackages.mirage-logs: 2.1.0 -> 3.0.0 --- .../ocaml-modules/mirage-logs/default.nix | 27 +++++++++---------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/pkgs/development/ocaml-modules/mirage-logs/default.nix b/pkgs/development/ocaml-modules/mirage-logs/default.nix index 59bf3576d70c..57639e61301b 100644 --- a/pkgs/development/ocaml-modules/mirage-logs/default.nix +++ b/pkgs/development/ocaml-modules/mirage-logs/default.nix @@ -5,41 +5,40 @@ logs, fmt, ptime, - mirage-clock, + mirage-ptime, cmdliner, - lwt, alcotest, }: buildDunePackage (finalAttrs: { pname = "mirage-logs"; - version = "2.1.0"; - - duneVersion = "3"; + version = "3.0.0"; src = fetchurl { url = "https://github.com/mirage/mirage-logs/releases/download/v${finalAttrs.version}/mirage-logs-${finalAttrs.version}.tbz"; - hash = "sha256-rorCsgw7QCQmjotr465KShQGWdoUM88djpwgqwBGnLs="; + hash = "sha256-ptt9/Dr9h+W3j/9SAHpWvKZnIgeuBn5oxj72kxiSZ1A="; }; propagatedBuildInputs = [ logs fmt ptime - mirage-clock + mirage-ptime cmdliner ]; doCheck = true; - checkInputs = [ - lwt - alcotest - ]; + checkInputs = [ alcotest ]; meta = { - description = "Reporter for the Logs library that writes log messages to stderr, using a Mirage `CLOCK` to add timestamps"; + description = "Mirage reporter for the Logs library"; homepage = "https://github.com/mirage/mirage-logs"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + changelog = "https://raw.githubusercontent.com/mirage/mirage-logs/v${finalAttrs.version}/CHANGES.md"; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ + stepbrobd + vbgl + ]; + teams = [ lib.teams.ngi ]; }; })