2024-12-02 12:12:50 -08:00
|
|
|
{ buildDotnetGlobalTool, lib }:
|
|
|
|
|
|
|
|
buildDotnetGlobalTool {
|
|
|
|
pname = "dotnet-ef";
|
2025-08-07 19:48:26 +00:00
|
|
|
version = "9.0.8";
|
2024-12-02 12:12:50 -08:00
|
|
|
|
2025-08-07 19:48:26 +00:00
|
|
|
nugetHash = "sha256-WwTBhAQDt1crFg35nnoppnOrbHfV9mv6vGhk/VSFjMI=";
|
2024-12-02 12:12:50 -08:00
|
|
|
|
|
|
|
meta = {
|
2025-06-05 09:11:29 -07:00
|
|
|
description = "Tools to help with design-time development tasks";
|
2024-12-02 12:12:50 -08:00
|
|
|
longDescription = ''
|
|
|
|
The Entity Framework Core tools help with design-time development tasks.
|
|
|
|
They're primarily used to manage Migrations and to scaffold a DbContext and entity types by reverse engineering the schema of a database.
|
|
|
|
'';
|
|
|
|
downloadPage = "https://www.nuget.org/packages/dotnet-ef";
|
|
|
|
homepage = "https://learn.microsoft.com/en-us/ef/core/cli/dotnet";
|
|
|
|
changelog = "https://learn.microsoft.com/en-us/ef/core/what-is-new/";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ lostmsu ];
|
|
|
|
mainProgram = "dotnet-ef";
|
|
|
|
};
|
|
|
|
}
|