forked from mirrors/nixpkgs
Merge pull request #159275 from IvarWithoutBones/dotnet-folder
build-support: create dotnet folder
This commit is contained in:
commit
871b32ac99
|
@ -437,11 +437,7 @@ with pkgs;
|
|||
|
||||
dotfiles = callPackage ../applications/misc/dotfiles { };
|
||||
|
||||
dotnetenv = callPackage ../build-support/dotnetenv {
|
||||
dotnetfx = dotnetfx40;
|
||||
};
|
||||
|
||||
dotnetbuildhelpers = callPackage ../build-support/dotnetbuildhelpers { };
|
||||
# Dotnet
|
||||
|
||||
dotnetCorePackages = recurseIntoAttrs (callPackage ../development/compilers/dotnet {});
|
||||
|
||||
|
@ -454,6 +450,17 @@ 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 { };
|
||||
|
||||
dotnetenv = callPackage ../build-support/dotnet/dotnetenv {
|
||||
dotnetfx = dotnetfx40;
|
||||
};
|
||||
|
||||
buildDotnetPackage = callPackage ../build-support/dotnet/build-dotnet-package { };
|
||||
fetchNuGet = callPackage ../build-support/dotnet/fetchnuget { };
|
||||
dotnetbuildhelpers = callPackage ../build-support/dotnet/dotnetbuildhelpers { };
|
||||
|
||||
dumb-init = callPackage ../applications/virtualization/dumb-init {};
|
||||
|
||||
umoci = callPackage ../applications/virtualization/umoci {};
|
||||
|
@ -655,11 +662,6 @@ with pkgs;
|
|||
|
||||
fetchFromRepoOrCz = callPackage ../build-support/fetchrepoorcz {};
|
||||
|
||||
fetchNuGet = callPackage ../build-support/fetchnuget { };
|
||||
buildDotnetPackage = callPackage ../build-support/build-dotnet-package { };
|
||||
buildDotnetModule = callPackage ../build-support/build-dotnet-module { };
|
||||
nuget-to-nix = callPackage ../build-support/nuget-to-nix { };
|
||||
|
||||
fetchgx = callPackage ../build-support/fetchgx { };
|
||||
|
||||
resolveMirrorURLs = {url}: fetchurl {
|
||||
|
|
Loading…
Reference in a new issue