buildDotnetModule: move into dotnetCorePackages

This commit is contained in:
David McFarland
2024-09-06 16:05:19 -03:00
parent 9a0be2fd28
commit 5b31367e13
2 changed files with 2 additions and 2 deletions
@@ -51,6 +51,7 @@ makeScopeWithSplicing' {
patchNupkgs = callPackage ./patch-nupkgs.nix {};
nugetPackageHook = callPackage ./nuget-package-hook.nix {};
buildDotnetModule = callPackage ../../../build-support/dotnet/build-dotnet-module { };
mkNugetSource = callPackage ../../../build-support/dotnet/make-nuget-source { };
mkNugetDeps = callPackage ../../../build-support/dotnet/make-nuget-deps { };
fetchNupkg = callPackage ../../../build-support/dotnet/fetch-nupkg { };
+1 -2
View File
@@ -878,9 +878,8 @@ with pkgs;
dotnet-runtime = dotnetCorePackages.runtime_6_0;
dotnet-aspnetcore = dotnetCorePackages.aspnetcore_6_0;
buildDotnetModule = callPackage ../build-support/dotnet/build-dotnet-module { };
nuget-to-nix = callPackage ../build-support/dotnet/nuget-to-nix { };
inherit (dotnetCorePackages) mkNugetSource mkNugetDeps;
inherit (dotnetCorePackages) buildDotnetModule mkNugetSource mkNugetDeps;
buildDotnetGlobalTool = callPackage ../build-support/dotnet/build-dotnet-global-tool { };