2022-05-29 10:23:16 +02:00
|
|
|
{ lib, ... }:
|
|
|
|
lib.recurseIntoAttrs {
|
|
|
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/175196
|
2024-04-24 12:44:31 +02:00
|
|
|
# This test has since been simplified to test the recursion without
|
|
|
|
# the fluff to make it look like a real-world example.
|
|
|
|
# The requirement we test here is:
|
|
|
|
# - `permittedInsecurePackages` must be allowed to
|
|
|
|
# use `pkgs` to retrieve at least *some* information.
|
|
|
|
#
|
|
|
|
# Instead of `builtins.seq`, the list may be constructed based on actual package info.
|
2022-05-29 10:23:16 +02:00
|
|
|
allowPkgsInPermittedInsecurePackages =
|
|
|
|
let pkgs = import ../.. {
|
|
|
|
config = {
|
2024-04-24 12:44:31 +02:00
|
|
|
permittedInsecurePackages = builtins.seq pkgs.glibc.version [];
|
2022-05-29 10:23:16 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in pkgs.hello;
|
|
|
|
|
|
|
|
}
|