From 791cb2da826fa8e5b6392e025ffa115532750294 Mon Sep 17 00:00:00 2001 From: Guy Chronister Date: Thu, 22 Jan 2026 12:08:45 -0600 Subject: [PATCH] ocamlPackages.parany: migrate to finalAttrs --- pkgs/development/ocaml-modules/parany/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/parany/default.nix b/pkgs/development/ocaml-modules/parany/default.nix index 621b4a39df70..e54460021e89 100644 --- a/pkgs/development/ocaml-modules/parany/default.nix +++ b/pkgs/development/ocaml-modules/parany/default.nix @@ -5,7 +5,7 @@ cpu, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "parany"; version = "14.0.1"; @@ -13,8 +13,8 @@ buildDunePackage rec { src = fetchFromGitHub { owner = "UnixJunkie"; - repo = pname; - rev = "v${version}"; + repo = "parany"; + rev = "v${finalAttrs.version}"; hash = "sha256-QR3Rq30iKhft+9tVCgJLOq9bwJe7bcay/kMTXjjCLjE="; }; @@ -26,4 +26,4 @@ buildDunePackage rec { maintainers = [ lib.maintainers.bcdarwin ]; license = lib.licenses.lgpl2; }; -} +})