From 1b0e626b3ac38f6181e838efd598fffb24719c99 Mon Sep 17 00:00:00 2001 From: Victor Nova Date: Thu, 28 Nov 2024 21:00:06 -0800 Subject: [PATCH 1/2] maintainers: add lostmsu --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 7ddcc64800c9..0ddb51c435e3 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -12826,6 +12826,13 @@ githubId = 1202012; name = "Ignat Loskutov"; }; + lostmsu = { + email = "lostfreeman@gmail.com"; + github = "lostmsu"; + githubId = 239520; + matrix = "@lostmsu:matrix.org"; + name = "Victor Nova"; + }; lostnet = { email = "lost.networking@gmail.com"; github = "lostnet"; From 4831293112076b1483ce8d80952e0657a7915a92 Mon Sep 17 00:00:00 2001 From: Victor Nova Date: Mon, 2 Dec 2024 12:12:50 -0800 Subject: [PATCH 2/2] dotnet-ef: init at 9.0.0 - the core tool of .NET Entity Framework --- pkgs/by-name/do/dotnet-ef/package.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/by-name/do/dotnet-ef/package.nix diff --git a/pkgs/by-name/do/dotnet-ef/package.nix b/pkgs/by-name/do/dotnet-ef/package.nix new file mode 100644 index 000000000000..06bb8ebab33a --- /dev/null +++ b/pkgs/by-name/do/dotnet-ef/package.nix @@ -0,0 +1,22 @@ +{ buildDotnetGlobalTool, lib }: + +buildDotnetGlobalTool { + pname = "dotnet-ef"; + version = "9.0.0"; + + nugetHash = "sha256-/Ru/H2WXX/SCqF2s0M1DJkaw+6Nikm+ccrveqiOXggA="; + + meta = { + description = "The Entity Framework Core tools 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"; + }; +}