Files
2026-05-25 13:48:20 +02:00

20 lines
326 B
Nix

{
lib,
which,
coreutils,
makeSetupHook,
# Passed from ../default.nix
dotnet-runtime,
}:
makeSetupHook {
name = "dotnet-hook";
substitutions = {
dotnetRuntime = dotnet-runtime;
wrapperPath = lib.makeBinPath [
which
coreutils
];
};
meta.license = lib.licenses.mit;
} ./dotnet-hook.sh