error: … while calling the 'derivationStrict' builtin at «nix-internal»/derivation-internal.nix:37:12: 36| 37| strict = derivationStrict drvAttrs; | ^ 38| … while evaluating derivation 'n8n-nodes-paperless-0.1.2' whose name attribute is located at «git+https://github.com/Mic92/nixpkgs?ref=main&rev=1f50b65020ad640521faadd76cd4adf82f483640&shallow=1»/pkgs/stdenv/generic/make-derivation.nix:651:11 … while evaluating attribute 'nativeBuildInputs' of derivation 'n8n-nodes-paperless-0.1.2' at «git+https://github.com/Mic92/nixpkgs?ref=main&rev=1f50b65020ad640521faadd76cd4adf82f483640&shallow=1»/pkgs/stdenv/generic/make-derivation.nix:719:11: 718| depsBuildBuild = buildBuildOutputs; 719| nativeBuildInputs = buildHostOutputs; | ^ 720| depsBuildTarget = buildTargetOutputs; (stack trace truncated; use '--show-trace' to show the full, detailed trace) error: Refusing to evaluate package 'pnpm-9.15.9' in /nix/store/x5x12yz6jpvjv18r0hbrjf9s1zc449xb-source/pkgs/development/tools/pnpm/generic.nix:164 because it is marked as insecure Known issues: - CVE-2026-48995 - CVE-2026-50014 - CVE-2026-50015 - CVE-2026-50016 - CVE-2026-50017 - CVE-2026-50573 - CVE-2026-55699 You can install it anyway by allowing this package, using the following methods: a) To temporarily allow all insecure packages, you can use an environment variable for a single invocation of the nix tools: $ export NIXPKGS_ALLOW_INSECURE=1 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake, then pass `--impure` in order to allow use of environment variables. b) for `nixos-rebuild` you can add ‘pnpm-9.15.9’ to `nixpkgs.config.permittedInsecurePackages` in the configuration.nix, like so: { nixpkgs.config.permittedInsecurePackages = [ "pnpm-9.15.9" ]; } c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add ‘pnpm-9.15.9’ to `permittedInsecurePackages` in ~/.config/nixpkgs/config.nix, like so: { permittedInsecurePackages = [ "pnpm-9.15.9" ]; }