2024-05-02 00:46:19 +00:00
|
|
|
{ lib, stdenv, dotnetfx }:
|
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
let
|
|
|
|
dotnetenv = {
|
|
|
|
buildSolution = import ./build-solution.nix {
|
|
|
|
inherit lib stdenv;
|
|
|
|
dotnetfx = dotnetfx.pkg;
|
|
|
|
};
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
buildWrapper = import ./wrapper.nix { inherit dotnetenv; };
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
inherit (dotnetfx)
|
|
|
|
assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path;
|
|
|
|
};
|
|
|
|
in dotnetenv
|