diff options
| author | Robert Schütz <nix@dotlambda.de> | 2022-12-09 10:04:57 -0800 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-12-11 21:14:59 +0000 |
| commit | e03ac0b5f198110365f40c3f118d963982cd5eea (patch) | |
| tree | 4ecb71bcca5288bf29b65d0b4291f1a10b6ba01c | |
| parent | nixops: mark certifi insecure (diff) | |
| download | nixpkgs-origin/backport-205342-to-release-22.05.tar.gz | |
nixopsUnstable: mark certifi insecureorigin/backport-205342-to-release-22.05
(cherry picked from commit 218122fa5c158ca244e842184dc894c6aba198ee)
| -rw-r--r-- | pkgs/applications/networking/cluster/nixops/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/nixops/default.nix b/pkgs/applications/networking/cluster/nixops/default.nix index 1f08aad53e4e..e90ffbf20224 100644 --- a/pkgs/applications/networking/cluster/nixops/default.nix +++ b/pkgs/applications/networking/cluster/nixops/default.nix @@ -58,6 +58,14 @@ let }; }) + (self: super: { + certifi = super.certifi.overridePythonAttrs (old: { + meta = old.meta // { + knownVulnerabilities = [ "CVE-2022-23491" ]; + }; + }); + }) + ]; } ).python; |
