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

18 lines
331 B
Nix
Raw Normal View History

2021-01-24 00:40:18 +00:00
{ lib, stdenv, dotnetfx }:
let dotnetenv =
{
buildSolution = import ./build-solution.nix {
2021-01-24 00:40:18 +00:00
inherit lib stdenv;
dotnetfx = dotnetfx.pkg;
};
buildWrapper = import ./wrapper.nix {
inherit dotnetenv;
};
2020-09-20 22:30:58 +00:00
inherit (dotnetfx) assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path;
};
in
dotnetenv