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 'aperant-2.7.6'10 whose name attribute is located at «github:NixOS/nixpkgs/35d3407a3816f3b341d8cf1d60abaf2b7b8166ac?narHash=sha256-BoYPdqk6jlKXy%2BDyUzyGV/CtRGfAhk2MmIgBhsemTGI%3D»/pkgs/stdenv/generic/make-derivation.nix:651:111112 … while evaluating attribute 'installPhase' of derivation 'aperant-2.7.6'13 at /var/lib/nixbot/worktrees/71-ca6b10637407-4c3ca66d/packages/aperant/package.nix:55:3:14 54|15 55| installPhase = ''16 | ^17 56| runHook preInstall1819 (stack trace truncated; use '--show-trace' to show the full, detailed trace)2021 error: Refusing to evaluate package 'electron-40.10.5' in /nix/store/2gi66ywhbj66ssbz5bhgibzafa15m7zy-source/pkgs/development/tools/electron/binary/generic.nix:50 because it is marked as insecure2223 Known issues:24 - Electron version 40.10.5 is EOL2526 You can install it anyway by allowing this package, using the27 following methods:2829 a) To temporarily allow all insecure packages, you can use an environment30 variable for a single invocation of the nix tools:3132 $ export NIXPKGS_ALLOW_INSECURE=13334 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,35 then pass `--impure` in order to allow use of environment variables.3637 b) for `nixos-rebuild` you can add ‘electron-40.10.5’ to38 `nixpkgs.config.permittedInsecurePackages` in the configuration.nix,39 like so:4041 {42 nixpkgs.config.permittedInsecurePackages = [43 "electron-40.10.5"44 ];45 }4647 c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add48 ‘electron-40.10.5’ to `permittedInsecurePackages` in49 ~/.config/nixpkgs/config.nix, like so:5051 {52 permittedInsecurePackages = [53 "electron-40.10.5"54 ];55 }