Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dotnet-sdk_7: mark as insecure due to support ending #326218

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading