summary refs log tree commit diff
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-01-19 10:30:38 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-02-20 08:09:59 +1000
commita86974cf908175889634b9d6f4e434cfdbd2d814 (patch)
treec1f1eafa9c5338a2955198801c54edb51d7aef66
parent3a3721c585d3b18bf4fd2ddbdf909131e2ee9b96 (diff)
downloadnixpkgs-a86974cf908175889634b9d6f4e434cfdbd2d814.tar
nixpkgs-a86974cf908175889634b9d6f4e434cfdbd2d814.tar.gz
nixpkgs-a86974cf908175889634b9d6f4e434cfdbd2d814.tar.bz2
nixpkgs-a86974cf908175889634b9d6f4e434cfdbd2d814.tar.lz
nixpkgs-a86974cf908175889634b9d6f4e434cfdbd2d814.tar.xz
nixpkgs-a86974cf908175889634b9d6f4e434cfdbd2d814.tar.zst
nixpkgs-a86974cf908175889634b9d6f4e434cfdbd2d814.zip
go_1_14: set knownVulnerabilities
Support for Go 1.14 ended with the release of Go 1.16: https://golang.org/doc/devel/release.html#policy
-rw-r--r--pkgs/development/compilers/go/1.14.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/compilers/go/1.14.nix b/pkgs/development/compilers/go/1.14.nix
index 641652ac613..3060e6d4e56 100644
--- a/pkgs/development/compilers/go/1.14.nix
+++ b/pkgs/development/compilers/go/1.14.nix
@@ -258,5 +258,8 @@ stdenv.mkDerivation rec {
     license = licenses.bsd3;
     maintainers = teams.golang.members;
     platforms = platforms.linux ++ platforms.darwin;
+    knownVulnerabilities = [
+      "Support for Go 1.14 ended with the release of Go 1.16: https://golang.org/doc/devel/release.html#policy"
+    ];
   };
 }