summary refs log tree commit diff
path: root/pkgs/build-support/dotnetenv/default.nix
blob: 3015db42b07b16cf70c1478e16ceefe42d59d27f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, stdenv, dotnetfx }:

let dotnetenv =
{
  buildSolution = import ./build-solution.nix {
    inherit lib stdenv;
    dotnetfx = dotnetfx.pkg;
  };

  buildWrapper = import ./wrapper.nix {
    inherit dotnetenv;
  };

  inherit (dotnetfx) assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path;
};
in
dotnetenv