2010-06-15 13:16:35 +02:00
|
|
|
{stdenv, dotnetfx}:
|
|
|
|
|
2011-09-13 17:47:54 +02:00
|
|
|
let dotnetenv =
|
2010-06-15 13:16:35 +02:00
|
|
|
{
|
2010-06-15 14:23:28 +02:00
|
|
|
buildSolution = import ./build-solution.nix {
|
2010-06-15 13:16:35 +02:00
|
|
|
inherit stdenv;
|
|
|
|
dotnetfx = dotnetfx.pkg;
|
|
|
|
};
|
2011-09-13 17:47:54 +02:00
|
|
|
|
|
|
|
buildWrapper = import ./wrapper.nix {
|
|
|
|
inherit dotnetenv;
|
|
|
|
};
|
|
|
|
|
2010-06-15 13:16:35 +02:00
|
|
|
inherit (dotnetfx) assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path;
|
2011-09-13 17:47:54 +02:00
|
|
|
};
|
|
|
|
in
|
|
|
|
dotnetenv
|