1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00
nixpkgs/pkgs/build-support/dotnetenv/default.nix

11 lines
223 B
Nix
Raw Normal View History

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