core/pkgs/build-support/dotnet/dotnetenv/default.nix

25 lines
379 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{
2024-06-30 08:16:52 +00:00
lib,
stdenv,
dotnetfx,
}:
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
let
dotnetenv = {
buildSolution = import ./build-solution.nix {
inherit lib stdenv;
dotnetfx = dotnetfx.pkg;
};
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
buildWrapper = import ./wrapper.nix { inherit dotnetenv; };
inherit (dotnetfx)
assembly20Path
wcfPath
referenceAssembly30Path
referenceAssembly35Path
;
};
2024-05-02 00:46:19 +00:00
in
dotnetenv