mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
06891d3997
svn path=/nixpkgs/trunk/; revision=29239
18 lines
322 B
Nix
18 lines
322 B
Nix
{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
|