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

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

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

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