blob: c83534f6060a4e5ee2bf69aa573c211164eb3c17 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "dotnet-ef";
version = "9.0.7";
nugetHash = "sha256-6iutZww6gfHlAipNmNSwSsU8dzp02WEVVHmPWLefB/c=";
meta = {
description = "Tools to help with design-time development tasks";
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";
};
}
|