···1616 # Strip most of attributes when evaluating to spare memory usage
1717, scrubJobs ? true
1818 # Attributes passed to nixpkgs. Don't build packages marked as unfree.
1919-, nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
1919+, nixpkgsArgs ? { config = {
2020+ allowUnfree = false;
2121+ inHydra = true;
2222+ permittedInsecurePackages = [
2323+ # *Exceptionally*, those packages will be cached with their *secure* dependents
2424+ # because they will reach EOL in the middle of the 23.05 release
2525+ # and it will be too much painful for our users to recompile them
2626+ # for no real reason.
2727+ # Remove them for 23.11.
2828+ "nodejs-16.20.0"
2929+ "openssl-1.1.1t"
3030+ ];
3131+ }; }
2032}:
21332234with import ./release-lib.nix { inherit supportedSystems scrubJobs nixpkgsArgs; };