Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 17 lines 331 B view raw
1{ lib, stdenv, dotnetfx }: 2 3let dotnetenv = 4{ 5 buildSolution = import ./build-solution.nix { 6 inherit lib stdenv; 7 dotnetfx = dotnetfx.pkg; 8 }; 9 10 buildWrapper = import ./wrapper.nix { 11 inherit dotnetenv; 12 }; 13 14 inherit (dotnetfx) assembly20Path wcfPath referenceAssembly30Path referenceAssembly35Path; 15}; 16in 17dotnetenv