From 765795cbd84b80b64497a161f1d16ed489dcce4b Mon Sep 17 00:00:00 2001 From: Guy Chronister Date: Wed, 21 Jan 2026 19:29:14 -0600 Subject: [PATCH] ocamlPackages.dream: migrate to finalAttrs --- pkgs/development/ocaml-modules/dream/pure.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/dream/pure.nix b/pkgs/development/ocaml-modules/dream/pure.nix index 884715f67cf3..b22846938242 100644 --- a/pkgs/development/ocaml-modules/dream/pure.nix +++ b/pkgs/development/ocaml-modules/dream/pure.nix @@ -10,12 +10,12 @@ uri, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "dream-pure"; version = "1.0.0-alpha8"; src = fetchurl { - url = "https://github.com/aantron/dream/releases/download/${version}/dream-${version}.tar.gz"; + url = "https://github.com/aantron/dream/releases/download/${finalAttrs.version}/dream-${finalAttrs.version}.tar.gz"; hash = "sha256-I+2BKJDAP+XJl0pJYano5iEmvte8fX0UQLhGUslc8pY="; }; @@ -35,4 +35,4 @@ buildDunePackage rec { license = lib.licenses.mit; maintainers = [ lib.maintainers.vbgl ]; }; -} +})