biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / test / config.nix
blob24a840af0aeada189c584136c37a13034d706f55
1 { lib, ... }:
2 lib.recurseIntoAttrs {
4   # https://github.com/NixOS/nixpkgs/issues/175196
5   # This test has since been simplified to test the recursion without
6   # the fluff to make it look like a real-world example.
7   # The requirement we test here is:
8   # - `permittedInsecurePackages` must be allowed to
9   #   use `pkgs` to retrieve at least *some* information.
10   #
11   # Instead of `builtins.seq`, the list may be constructed based on actual package info.
12   allowPkgsInPermittedInsecurePackages =
13     let pkgs = import ../.. {
14           config = {
15             permittedInsecurePackages = builtins.seq pkgs.glibc.version [];
16           };
17         };
19     in pkgs.hello;