1error:2 … while calling the 'derivationStrict' builtin3 at «nix-internal»/derivation-internal.nix:37:12:4 36|5 37| strict = derivationStrict drvAttrs;6 | ^7 38|89 … while evaluating derivation 'test-deps'10 whose name attribute is located at «github:NixOS/nixpkgs/716c7a2664ca8325617b8a7fbb609273f2c4cae7?narHash=sha256-zbcZ1dmBTPfJ7Mlqh/yLEPGpgJnwuv4Xr1xucy2WqMA%3D»/pkgs/stdenv/generic/make-derivation.nix:651:111112 … while evaluating attribute 'buildCommand' of derivation 'test-deps'13 at «github:NixOS/nixpkgs/716c7a2664ca8325617b8a7fbb609273f2c4cae7?narHash=sha256-zbcZ1dmBTPfJ7Mlqh/yLEPGpgJnwuv4Xr1xucy2WqMA%3D»/pkgs/build-support/trivial-builders/default.nix:81:17:14 80| enableParallelBuilding = true;15 81| inherit buildCommand name;16 | ^17 82| passAsFile = [ "buildCommand" ] ++ (derivationArgs.passAsFile or [ ]);1819 (stack trace truncated; use '--show-trace' to show the full, detailed trace)2021 error: Refusing to evaluate package 'pnpm-9.15.9' in /nix/store/51z7p4g46ybpi81ipn10c9fs2i0vvqs3-source/pkgs/development/tools/pnpm/generic.nix:164 because it is marked as insecure2223 Known issues:24 - CVE-2026-4899525 - CVE-2026-5001426 - CVE-2026-5001527 - CVE-2026-5001628 - CVE-2026-5001729 - CVE-2026-5057330 - CVE-2026-556993132 You can install it anyway by allowing this package, using the33 following methods:3435 a) To temporarily allow all insecure packages, you can use an environment36 variable for a single invocation of the nix tools:3738 $ export NIXPKGS_ALLOW_INSECURE=13940 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,41 then pass `--impure` in order to allow use of environment variables.4243 b) for `nixos-rebuild` you can add ‘pnpm-9.15.9’ to44 `nixpkgs.config.permittedInsecurePackages` in the configuration.nix,45 like so:4647 {48 nixpkgs.config.permittedInsecurePackages = [49 "pnpm-9.15.9"50 ];51 }5253 c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add54 ‘pnpm-9.15.9’ to `permittedInsecurePackages` in55 ~/.config/nixpkgs/config.nix, like so:5657 {58 permittedInsecurePackages = [59 "pnpm-9.15.9"60 ];61 }