nicht mehr insecure

This commit is contained in:
Some One 2025-08-20 17:46:50 +02:00
parent 72e1328430
commit 633356e3bf
3 changed files with 6 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
/mdn /mdn
/amo /amo
/result
/result-*

View File

@ -162,6 +162,6 @@ in {
./nix-ssl-cert-file.patch ./nix-ssl-cert-file.patch
./use-etc-ssl-certs.patch ./use-etc-ssl-certs.patch
]; ];
extraMeta.knownVulnerabilities = [ "Support for OpenSSL 1.0.2 ended with 2019." ]; #extraMeta.knownVulnerabilities = [ "Support for OpenSSL 1.0.2 ended with 2019." ];
}; };
} }

View File

@ -36,9 +36,12 @@
pythonAttr = "python26"; pythonAttr = "python26";
openssl = bopenssl; openssl = bopenssl;
packageOverrides = import ./python-overrides.nix; packageOverrides = import ./python-overrides.nix;
#packageOverridesss = _: super: { #packageOverridesss = _: super: {
# setupTools = "lol"; # setupTools = "lol";
#}; #};
}).overrideAttrs (prev: {
meta = (prev.meta or {}) // {knownVulnerabilities = [];};
}); });
in { in {