From 7530125d8e0c7486b8300b615bca0f09fcff46ea Mon Sep 17 00:00:00 2001 From: eljamm Date: Wed, 22 Jul 2026 16:40:49 +0200 Subject: [PATCH] doc/pnpmBuildHook: fix fetcherVersion typo --- doc/hooks/pnpm.section.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/hooks/pnpm.section.md b/doc/hooks/pnpm.section.md index 58c966a4dbdf..e8871c6c2398 100644 --- a/doc/hooks/pnpm.section.md +++ b/doc/hooks/pnpm.section.md @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; inherit pnpm; - fetcherversion = 4; + fetcherVersion = 4; hash = lib.fakeHash; }; @@ -123,7 +123,7 @@ rustPlatform.buildRustPackage (finalAttrs: { pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; inherit pnpm; - fetcherversion = 4; + fetcherVersion = 4; hash = lib.fakeHash; };