summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorDaniƫl de Kok <me@danieldk.eu>2021-01-31 12:02:18 +0100
committerGitHub <noreply@github.com>2021-01-31 12:02:18 +0100
commitdb73e7a177b8736388e5270c629399a3c89c9b53 (patch)
tree80d1382b36137d6398633acfabb3c116cdb7e399 /pkgs
parent3ef37eb8fb8828291fb8533443df46d8ef9a27d8 (diff)
parent3780fbeda22a357466bef8d81db0c4c0d8981fd5 (diff)
Merge pull request #111211 from dotlambda/swift-broken-insecure
swift: mark as broken and insecure
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/swift/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/compilers/swift/default.nix b/pkgs/development/compilers/swift/default.nix
index 26e9f2b87e1a..530115602673 100644
--- a/pkgs/development/compilers/swift/default.nix
+++ b/pkgs/development/compilers/swift/default.nix
@@ -331,6 +331,9 @@ stdenv.mkDerivation {
# Swift doesn't support 32bit Linux, unknown on other platforms.
platforms = platforms.linux;
badPlatforms = platforms.i686;
- broken = stdenv.isAarch64; # 2018-09-04, never built on Hydra
+ broken = true; # 2021-01-29
+ knownVulnerabilities = [
+ "CVE-2020-9861"
+ ];
};
}