From 342203f139529d3154d819687a4c074ef6965ea0 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Tue, 12 May 2026 22:45:19 +0200 Subject: [PATCH] tests.pnpm.pnpm_11: fix binary During refactoring, we forgot to update the lib path in the wrapper. Signed-off-by: Sefa Eyeoglu --- pkgs/test/pnpm/pnpm_11/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/test/pnpm/pnpm_11/default.nix b/pkgs/test/pnpm/pnpm_11/default.nix index bf3ab4d4f551..fed05255ff0b 100644 --- a/pkgs/test/pnpm/pnpm_11/default.nix +++ b/pkgs/test/pnpm/pnpm_11/default.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation (finalAttrs: { install -Dm644 -t $out/lib/pnpm-11-test dist/index.js - makeWrapper ${lib.getExe nodejs} $out/bin/pnpm11test \ - --add-flags "$out/lib/pnpm11test" + makeWrapper ${lib.getExe nodejs} $out/bin/pnpm-11-test \ + --add-flags "$out/lib/pnpm-11-test" runHook postInstall ''; @@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { license = lib.licenses.mit; - mainProgram = "pnpm11test"; + mainProgram = "pnpm-11-test"; inherit (pnpm.meta) maintainers; }; })