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:15:10 +0000 |
| commit | 58eb6bb2b76ad0f8b8ff64f8d94ffe63c94957e5 (patch) | |
| tree | 1ac4d587f99eadefb1c58ccb54d238a6beab7a09 | |
| parent | nixops: mark certifi insecure (diff) | |
| download | nixpkgs-origin/backport-205342-to-release-22.11.tar.gz | |
nixopsUnstable: mark certifi insecureorigin/backport-205342-to-release-22.11
(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 a3ad35a4eabe..35a5a9591c2f 100644 --- a/pkgs/applications/networking/cluster/nixops/default.nix +++ b/pkgs/applications/networking/cluster/nixops/default.nix @@ -69,6 +69,14 @@ let }; }) + (self: super: { + certifi = super.certifi.overridePythonAttrs (old: { + meta = old.meta // { + knownVulnerabilities = [ "CVE-2022-23491" ]; + }; + }); + }) + ]; } ).python; |
