Skip to content

Commit

Permalink
dotnet-sdk_7: mark as insecure due to support ending
Browse files Browse the repository at this point in the history
  • Loading branch information
corngood committed Jul 11, 2024
1 parent d5e0de6 commit 8fa7798
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/development/compilers/dotnet/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ let

## Files in versions/ are generated automatically by update.sh ##
dotnet_6_0 = import ./versions/6.0.nix buildAttrs;
dotnet_7_0 = import ./versions/7.0.nix buildAttrs;
dotnet_7_0 = lib.mapAttrs
(n: v: if lib.isDerivation v then v.overrideAttrs (old: {
meta = old.meta // {
knownVulnerabilities = [
".NET 7 is unsupported since 2024-05-14 (https://endoflife.date/dotnet)"
];
};
}) else v)
(import ./versions/7.0.nix buildAttrs);
dotnet_8_0 = import ./versions/8.0.nix buildAttrs;
dotnet_9_0 = import ./versions/9.0.nix buildAttrs;

Expand Down

0 comments on commit 8fa7798

Please sign in to comment.