nixpkgs/pkgs/build-support/dotnetenv/default.nix

11 lines
222 B
Nix
Raw Normal View History

{stdenv, dotnetfx}:
{
buildSolution = import ./buildSolution.nix {
inherit stdenv;
dotnetfx = dotnetfx.pkg;
};
inherit (dotnetfx) assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path;
}