From 3816ec75e37137f20dada00de3953ec9260d6c83 Mon Sep 17 00:00:00 2001 From: Guy Chronister Date: Wed, 21 Jan 2026 19:28:51 -0600 Subject: [PATCH] ocamlPackages.conduit: migrate to finalAttrs --- pkgs/development/ocaml-modules/conduit/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/conduit/default.nix b/pkgs/development/ocaml-modules/conduit/default.nix index d131b7cb5754..2aa8f7aeaaaf 100644 --- a/pkgs/development/ocaml-modules/conduit/default.nix +++ b/pkgs/development/ocaml-modules/conduit/default.nix @@ -10,14 +10,14 @@ ipaddr-sexp, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "conduit"; version = "8.0.0"; minimalOCamlVersion = "4.13"; src = fetchurl { - url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz"; + url = "https://github.com/mirage/ocaml-conduit/releases/download/v${finalAttrs.version}/conduit-${finalAttrs.version}.tbz"; hash = "sha256-CmPZEIZbVHOJOhcM2lH2E4j0iOz0xLLtf+nsTiz2b2E="; }; @@ -39,4 +39,4 @@ buildDunePackage rec { ]; homepage = "https://github.com/mirage/ocaml-conduit"; }; -} +})