1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pkgs/top-level: stop permitting openssl 1.1

A year has passed and a limited number of packages still rely on this, so
it is probably safe to remove these.
This commit is contained in:
Martin Weinelt 2024-06-24 02:25:04 +02:00
parent 65378f632a
commit b0b4d2d06d
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 0 additions and 14 deletions

View file

@ -12,12 +12,6 @@
nixpkgsArgs ? { config = { nixpkgsArgs ? { config = {
allowUnfree = false; allowUnfree = false;
inHydra = true; inHydra = true;
permittedInsecurePackages = [
# Keep evaluating home-assistant, which is transitively affected
# by home-assistant-chip-core consuming OpenSSL 1.1. Affects roughly
# 800 jobs.
"openssl-1.1.1w"
];
}; } }; }
}: }:

View file

@ -29,14 +29,6 @@
, nixpkgsArgs ? { config = { , nixpkgsArgs ? { config = {
allowUnfree = false; allowUnfree = false;
inHydra = true; inHydra = true;
permittedInsecurePackages = [
# *Exceptionally*, those packages will be cached with their *secure* dependents
# because they will reach EOL in the middle of the 23.05 release
# and it will be too much painful for our users to recompile them
# for no real reason.
# Remove them for 23.11.
"openssl-1.1.1w"
];
}; } }; }
# This flag, if set to true, will inhibit the use of `mapTestOn` # This flag, if set to true, will inhibit the use of `mapTestOn`