From bbb8e16c49df4daa22db997d466f3205cc34d985 Mon Sep 17 00:00:00 2001 From: Guy Chronister Date: Wed, 21 Jan 2026 19:29:01 -0600 Subject: [PATCH] ocamlPackages.decoders-ezjsonm: migrate to finalAttrs --- pkgs/development/ocaml-modules/decoders-ezjsonm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/decoders-ezjsonm/default.nix b/pkgs/development/ocaml-modules/decoders-ezjsonm/default.nix index acb5c16cffa7..71ea3a104b73 100644 --- a/pkgs/development/ocaml-modules/decoders-ezjsonm/default.nix +++ b/pkgs/development/ocaml-modules/decoders-ezjsonm/default.nix @@ -7,7 +7,7 @@ ounit2, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "decoders-ezjsonm"; # sub-package built separately from the same source @@ -29,8 +29,8 @@ buildDunePackage rec { meta = { description = "Ezjsonm backend for decoders"; homepage = "https://github.com/mattjbray/ocaml-decoders"; - changelog = "https://github.com/mattjbray/ocaml-decoders/blob/${version}/CHANGES.md"; + changelog = "https://github.com/mattjbray/ocaml-decoders/blob/${finalAttrs.version}/CHANGES.md"; license = lib.licenses.isc; maintainers = with lib.maintainers; [ infinidoge ]; }; -} +})