depot/pkgs/test/config.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

21 lines
672 B
Nix

{ lib, ... }:
lib.recurseIntoAttrs {
# https://github.com/NixOS/nixpkgs/issues/175196
# 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.
allowPkgsInPermittedInsecurePackages =
let pkgs = import ../.. {
config = {
permittedInsecurePackages = builtins.seq pkgs.glibc.version [];
};
};
in pkgs.hello;
}