lol
1{stdenv, dotnetfx}:
2
3let dotnetenv =
4{
5 buildSolution = import ./build-solution.nix {
6 inherit stdenv;
7 dotnetfx = dotnetfx.pkg;
8 };
9
10 buildWrapper = import ./wrapper.nix {
11 inherit dotnetenv;
12 };
13
14 inherit (dotnetfx) assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path;
15};
16in
17dotnetenv