summary refs log blame commit diff
path: root/pkgs/build-support/dotnetenv/default.nix
blob: 3015db42b07b16cf70c1478e16ceefe42d59d27f (plain) (tree)
1
2
3
4
5
6
7
8
                          
 
               
 
                                               
                       

                            



                                       
 
                                                                                            


         
{ 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