1{ 2 lib, 3 which, 4 coreutils, 5 makeSetupHook, 6 # Passed from ../default.nix 7 dotnet-runtime, 8}: 9makeSetupHook { 10 name = "dotnet-hook"; 11 substitutions = { 12 dotnetRuntime = dotnet-runtime; 13 wrapperPath = lib.makeBinPath [ 14 which 15 coreutils 16 ]; 17 }; 18} ./dotnet-hook.sh