icinga2: Pin boost version (#374998)
[NixPkgs.git] / pkgs / build-support / dotnet / dotnetenv / default.nix
blob5468a4916cae37c06d6bc8b88390944f9f1dd499
2   lib,
3   stdenv,
4   dotnetfx,
5 }:
7 let
8   dotnetenv = {
9     buildSolution = import ./build-solution.nix {
10       inherit lib stdenv;
11       dotnetfx = dotnetfx.pkg;
12     };
14     buildWrapper = import ./wrapper.nix {
15       inherit dotnetenv;
16     };
18     inherit (dotnetfx)
19       assembly20Path
20       wcfPath
21       referenceAssembly30Path
22       referenceAssembly35Path
23       ;
24   };
26 dotnetenv