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