summary refs log tree commit diff
path: root/pkgs/build-support/dotnetenv/default.nix
blob: 577a7a3b5e84dee069a2d41cbeb141f02f0b9922 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, dotnetfx}:

{
  buildSolution = import ./build-solution.nix {
    inherit stdenv;
    dotnetfx = dotnetfx.pkg;
  };
  
  inherit (dotnetfx) assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path;
}