From 67d127c7214a32727f6620e49a81a1481c97f632 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Tue, 12 May 2026 22:21:47 +0200 Subject: [PATCH 1/2] pnpm: 11.1.0 -> 11.1.1 https://github.com/pnpm/pnpm/releases/tag/v11.1.1 Signed-off-by: Sefa Eyeoglu --- pkgs/development/tools/pnpm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/pnpm/default.nix b/pkgs/development/tools/pnpm/default.nix index c1423124fc24..42f43ad121f8 100644 --- a/pkgs/development/tools/pnpm/default.nix +++ b/pkgs/development/tools/pnpm/default.nix @@ -26,8 +26,8 @@ let hash = "sha256-jnDdxmSbGLw9iVzzqQjAKR6kw4A5rYcixH4Bja8enPw="; }; "11" = { - version = "11.1.0"; - hash = "sha256-VzyCrTVuiwl+bKxIG3OB+d7tM6MYr38xGYSFjr4fl+8="; + version = "11.1.1"; + hash = "sha256-BbKC0GMyKVxzbwsgyL3xhTJb8bymgske2BFUo8aFHMA="; }; }; From 342203f139529d3154d819687a4c074ef6965ea0 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Tue, 12 May 2026 22:45:19 +0200 Subject: [PATCH 2/2] 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; }; })